Closed bitstein closed 8 years ago
I see now. You are pulling from settings.yaml
. Closing.
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.
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 thearguments
dictionary asNone
.