diff options
author | Vegard Storheil Eriksen <zyp@jvnv.net> | 2009-12-28 16:19:31 +0100 |
---|---|---|
committer | Vegard Storheil Eriksen <zyp@jvnv.net> | 2009-12-28 16:19:31 +0100 |
commit | ffae2d61b6d760a8f4328bbc351b442df55c566a (patch) | |
tree | 5a9882a183d0f2c1b5a7e2ecca9ecd75087f7f83 /anidb.py | |
parent | cf4160dbe6df5a54d27773eed669c9170f78bc19 (diff) |
Fixed bugs with username and password.
Username was incorrectly lowercased.
Password read from getpass() was ignored.
Diffstat (limited to 'anidb.py')
-rw-r--r-- | anidb.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -76,7 +76,7 @@ if options.login: if not options.username: options.username = raw_input('Username: ') if not options.password: - options.passord = getpass.getpass() + options.password = getpass.getpass() # Input files. |