auino / cookidump

Easily dump cookidoo recipes
MIT License
146 stars 34 forks source link

Chromedriver url & fix separate_json arg #10

Closed NilsKrause closed 3 years ago

NilsKrause commented 3 years ago

Executing script resulted in an error due to using the parser object instead of the args object:

Traceback (most recent call last):
  File "cookidump.py", line 237, in <module>
    run(args.webdriverfile, args.outputdir, parser.separate_json)
AttributeError: 'ArgumentParser' object has no attribute 'separate_json'

This is fixed in the first commit.

The url to the chromedriver is getting deprecated soon. In the second commit the url is replaced with the new one.

auino commented 3 years ago

Thank you. Just merged.