csaftoiu / yahoo-groups-backup

A python script to backup the contents of private Yahoo! groups.
The Unlicense
37 stars 17 forks source link

KeyError for arguments for '--login' and '--password' #2

Closed bitstein closed 8 years ago

bitstein commented 8 years ago

scraper = YahooBackupScraper(arguments['<group_name>'], arguments['--login'], arguments['--password'])

Login and password are never set in the command line parser, so it raises a KeyError exception. My quick local fix was to just add each to the arguments dictionary as None.

bitstein commented 8 years ago

I see now. You are pulling from settings.yaml. Closing.

csaftoiu commented 8 years ago

Thanks for the feedback! Actually my intention was that it would work without a settings and without passing in a login & password for public groups. Reopening and putting in a fix now.