You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using the download() function, I came accross multiple control character errors. This is caused by a url containing a blank space.
I temporarily solved it by changing these two lines to replace " " with "%20" inside bing.py:
self.seen.add(link.replace(" ", "%20"))
self.download_image(link.replace(" ", "%20"))
The text was updated successfully, but these errors were encountered:
When using the download() function, I came accross multiple control character errors. This is caused by a url containing a blank space.
I temporarily solved it by changing these two lines to replace " " with "%20" inside bing.py:
self.seen.add(link.replace(" ", "%20"))
self.download_image(link.replace(" ", "%20"))
The text was updated successfully, but these errors were encountered: