diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2013-12-08 18:09:15 +0100 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2013-12-08 18:09:15 +0100 |
commit | fbcc0c013e59e5f807ec10c446fa4d0560819365 (patch) | |
tree | 97d1283cf4db2fb9a5d136b723b0e2f947a9bcc3 | |
parent | fixes to adapt old plugins (diff) | |
download | pyload-fbcc0c013e59e5f807ec10c446fa4d0560819365.tar.xz |
fixed last commit
-rw-r--r-- | pavement.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pavement.py b/pavement.py index 10b431cc4..65afadb05 100644 --- a/pavement.py +++ b/pavement.py @@ -77,7 +77,7 @@ module_replace = [ ('self.account.getAccountInfo(self.user)', 'self.account.getAccountData()'), ('self.account.accounts[self.user]["password"]', 'self.account.password'), ("self.account.accounts[self.user]['password']", 'self.account.password'), - (".canUse()", '.isUsable(self)'), + (".canUse()", '.isUsable()'), ('from module.', 'from pyload.') # This should be always the last one ] |