diff options
author | 2013-12-08 21:32:09 +0100 | |
---|---|---|
committer | 2013-12-08 21:32:09 +0100 | |
commit | 2d52cee8e1d7748d013fd53c3bc56e437ce8f864 (patch) | |
tree | 24be10b03fc41ed5c1242c103699953393ddd804 /pyload/plugins/Crypter.py | |
parent | more fixes for older plugins (diff) | |
download | pyload-2d52cee8e1d7748d013fd53c3bc56e437ce8f864.tar.xz |
workaround for older plugins
Diffstat (limited to 'pyload/plugins/Crypter.py')
-rw-r--r-- | pyload/plugins/Crypter.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pyload/plugins/Crypter.py b/pyload/plugins/Crypter.py index fcea1263a..a81fffafa 100644 --- a/pyload/plugins/Crypter.py +++ b/pyload/plugins/Crypter.py @@ -141,7 +141,7 @@ class Crypter(Base): self.req = None # load account if set if self.USE_ACCOUNT: - self.account = self.core.accountManager.selectAccount(self.USE_ACCOUNT, self.user) + self.account = self.core.accountManager.selectAccount(self.USE_ACCOUNT, self.owner) if self.account: self.req = self.account.getAccountRequest() |