1
0
mirror of https://github.com/instaloader/instaloader.git synced 2024-09-11 16:22:24 +02:00

Let anonymous loader inherit all options

This commit is contained in:
Alexander Graf 2017-07-20 15:24:57 +02:00
parent 7198f1ad9f
commit dd513f7190

View File

@ -847,9 +847,9 @@ class Instaloader:
except ProfileNotExistsException as err: except ProfileNotExistsException as err:
if username is not None: if username is not None:
self._log(err) self._log(err)
self._log( self._log("Trying again anonymously, helps in case you are just blocked.")
"Trying again anonymously, helps in case you are just blocked.") anonymous_loader = Instaloader(self.sleep, self.quiet, self.shorter_output,
anonymous_loader = Instaloader(self.sleep, self.quiet, self.shorter_output) self.profile_subdirs, self.user_agent)
anonymous_loader.download(target, profile_pic_only, download_videos, anonymous_loader.download(target, profile_pic_only, download_videos,
geotags, fast_update) geotags, fast_update)
else: else: