diff options
author | Walter Purcaro <vuolter@gmail.com> | 2015-01-11 20:20:43 +0100 |
---|---|---|
committer | Walter Purcaro <vuolter@gmail.com> | 2015-01-11 20:20:43 +0100 |
commit | 187586c77f750340c2d8c84781c82a3e612f17c3 (patch) | |
tree | 6ef89bf039cff4ec6149c2e9de8e3794b714cb9b /module/plugins/hooks/SmoozedCom.py | |
parent | [NitroflareCom] Fix bad import (diff) | |
download | pyload-187586c77f750340c2d8c84781c82a3e612f17c3.tar.xz |
Fix getAccount in some plugins
Diffstat (limited to 'module/plugins/hooks/SmoozedCom.py')
-rw-r--r-- | module/plugins/hooks/SmoozedCom.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/hooks/SmoozedCom.py b/module/plugins/hooks/SmoozedCom.py index 4e706c959..9ba2daac9 100644 --- a/module/plugins/hooks/SmoozedCom.py +++ b/module/plugins/hooks/SmoozedCom.py @@ -6,7 +6,7 @@ from module.plugins.internal.MultiHook import MultiHook class SmoozedCom(MultiHook): __name__ = "SmoozedCom" __type__ = "hook" - __version__ = "0.02" + __version__ = "0.03" __config__ = [("pluginmode" , "all;listed;unlisted", "Use for plugins" , "all"), ("pluginlist" , "str" , "Plugin list (comma separated)" , "" ), @@ -23,4 +23,4 @@ class SmoozedCom(MultiHook): def getHosters(self): user, data = self.account.selectAccount() - return self.account.getAccountData(user)["hosters"] + return self.account.getAccountInfo(user)["hosters"] |