HyShai/url-cleaner

There is an extra space in the output after the URL

Closed this issue · 1 comments

To see this, temporarily change:
if webbrowser.can_open('launch://'):
to:
if webbrowser.can_open('launch://') and False:

The problem is that console.write_link() leaves a space after it's output.
To fix this, remove the leading space on the string on the line that follows.

fixed. thank you so much!