diff options
author | Nils Hesse <nphesse@gmail.com> | 2012-11-08 23:27:10 +0100 |
---|---|---|
committer | Nils Hesse <nphesse@gmail.com> | 2012-11-08 23:27:10 +0100 |
commit | 26b79c227ac13bcad686bec6670f585b2d202e33 (patch) | |
tree | 9138149d6e4a0b661bec865a3fec5fc1db4fc2ee | |
parent | Removed leftover comment from reload.cc hoster account (diff) | |
download | pyload-26b79c227ac13bcad686bec6670f585b2d202e33.tar.xz |
Change self.accounts to self.info for getting the cached password hash
-rw-r--r-- | module/plugins/accounts/ReloadCc.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/module/plugins/accounts/ReloadCc.py b/module/plugins/accounts/ReloadCc.py index c1efd05c5..dbccd8f8f 100644 --- a/module/plugins/accounts/ReloadCc.py +++ b/module/plugins/accounts/ReloadCc.py @@ -37,7 +37,7 @@ class ReloadCc(Account): pwd = "pwd=%s" % self.accounts[user]['password'] try: - pwd = "hash=%s" % self.accounts[user]['pwdhash'] + pwd = "hash=%s" % self.infos[user]['pwdhash'] except Exception: pass |