diff options
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) |