diff options
author | mkaay <mkaay@mkaay.de> | 2010-08-12 14:22:29 +0200 |
---|---|---|
committer | mkaay <mkaay@mkaay.de> | 2010-08-12 14:22:29 +0200 |
commit | df95882117f287ef77abb1cb115e71576c1c2dab (patch) | |
tree | 1f4c14c8f372a536047692ee977be9b26514e212 /module/plugins/Account.py | |
parent | account fixes (diff) | |
download | pyload-df95882117f287ef77abb1cb115e71576c1c2dab.tar.xz |
unrar hook :D, account fix, other fixes
Diffstat (limited to 'module/plugins/Account.py')
-rw-r--r-- | module/plugins/Account.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/module/plugins/Account.py b/module/plugins/Account.py index bdbbd4c1c..af8b6ebe8 100644 --- a/module/plugins/Account.py +++ b/module/plugins/Account.py @@ -40,7 +40,7 @@ class Account(): def setAccounts(self, accounts): self.accounts = accounts - for user, data in self.accounts: + for user, data in self.accounts.iteritems(): self.login(user, data) def updateAccounts(self, user, password, options): |