Open birnbacs opened 1 year ago
In section main() of pixieset-downloader.py variable page must be initialized with 1 instead of 0:
page
def main(): arguments = init_arguments_parser() has_next_page = True page = 1 images_counter = 0 …
Thank you for this!!!! With page = 1, it works flawlessly.
page = 1
In section main() of pixieset-downloader.py variable
page
must be initialized with 1 instead of 0:def main(): arguments = init_arguments_parser() has_next_page = True page = 1 images_counter = 0 …