diff options
author | 2014-12-23 13:13:42 +0100 | |
---|---|---|
committer | 2014-12-23 13:13:42 +0100 | |
commit | 57a319563651a07bf8265ab52da0d7375191319c (patch) | |
tree | 1a65efc0eefc444ba102eeab2cd04112349368d5 /module/plugins/hooks/RehostTo.py | |
parent | [ExpertDecoders] Fix typo (thx DKeppi) (diff) | |
download | pyload-57a319563651a07bf8265ab52da0d7375191319c.tar.xz |
Rename MultiHoster plugin to MultiHook
Diffstat (limited to 'module/plugins/hooks/RehostTo.py')
-rw-r--r-- | module/plugins/hooks/RehostTo.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/module/plugins/hooks/RehostTo.py b/module/plugins/hooks/RehostTo.py index 1bf7d2555..48afa2342 100644 --- a/module/plugins/hooks/RehostTo.py +++ b/module/plugins/hooks/RehostTo.py @@ -1,13 +1,13 @@ # -*- coding: utf-8 -*- from module.network.RequestFactory import getURL -from module.plugins.internal.MultiHoster import MultiHoster +from module.plugins.internal.MultiHook import MultiHook -class RehostTo(MultiHoster): +class RehostTo(MultiHook): __name__ = "RehostTo" __type__ = "hook" - __version__ = "0.43" + __version__ = "0.44" __config__ = [("hosterListMode", "all;listed;unlisted", "Use for hosters (if supported)", "all"), ("hosterList", "str", "Hoster list (comma separated)", ""), @@ -38,4 +38,4 @@ class RehostTo(MultiHoster): self.ses = data['ses'] self.long_ses = data['long_ses'] - return MultiHoster.coreReady(self) + return MultiHook.coreReady(self) |