diff options
author | Walter Purcaro <vuolter@gmail.com> | 2014-12-11 01:04:07 +0100 |
---|---|---|
committer | Walter Purcaro <vuolter@gmail.com> | 2014-12-11 01:04:07 +0100 |
commit | 1b2591b0650a6a0be1ad41022f6019d17192f195 (patch) | |
tree | dbd2158b96141ef9354b5cd5edaead28978d65e7 /pyload/plugins/hook/RPNetBiz.py | |
parent | Support new key attributes (diff) | |
download | pyload-1b2591b0650a6a0be1ad41022f6019d17192f195.tar.xz |
Rename some Addon methods
Diffstat (limited to 'pyload/plugins/hook/RPNetBiz.py')
-rw-r--r-- | pyload/plugins/hook/RPNetBiz.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pyload/plugins/hook/RPNetBiz.py b/pyload/plugins/hook/RPNetBiz.py index 25355520b..88e091d37 100644 --- a/pyload/plugins/hook/RPNetBiz.py +++ b/pyload/plugins/hook/RPNetBiz.py @@ -40,7 +40,7 @@ class RPNetBiz(MultiHoster): return hoster_list['hosters'] - def coreReady(self): + def activate(self): # Get account plugin and check if there is a valid account available self.account = self.core.accountManager.getAccountPlugin("RPNetBiz") if not self.account.canUse(): @@ -49,4 +49,4 @@ class RPNetBiz(MultiHoster): return # Run the overwriten core ready which actually enables the multihoster hook - return MultiHoster.coreReady(self) + return MultiHoster.activate(self) |