diff options
author | Walter Purcaro <vuolter@gmail.com> | 2014-12-23 13:20:53 +0100 |
---|---|---|
committer | Walter Purcaro <vuolter@gmail.com> | 2014-12-23 13:20:53 +0100 |
commit | 87203e996fb42c172b15e29f0e394d5b328d9ac2 (patch) | |
tree | 686ef0dbf945a8a543af11bbbea40fdecb7bdfed /module/plugins/hoster/PremiumTo.py | |
parent | Rename MultiHoster plugin to MultiHook (diff) | |
download | pyload-87203e996fb42c172b15e29f0e394d5b328d9ac2.tar.xz |
New plugin: MultiHoster
Diffstat (limited to 'module/plugins/hoster/PremiumTo.py')
-rw-r--r-- | module/plugins/hoster/PremiumTo.py | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/module/plugins/hoster/PremiumTo.py b/module/plugins/hoster/PremiumTo.py index cb880d6c1..d593cec3e 100644 --- a/module/plugins/hoster/PremiumTo.py +++ b/module/plugins/hoster/PremiumTo.py @@ -6,14 +6,14 @@ from os import remove from os.path import exists from urllib import quote -from module.plugins.internal.SimpleHoster import SimpleHoster, create_getInfo +from module.plugins.internal.MultiHoster import MultiHoster, create_getInfo from module.utils import fs_encode -class PremiumTo(SimpleHoster): +class PremiumTo(MultiHoster): __name__ = "PremiumTo" __type__ = "hoster" - __version__ = "0.13" + __version__ = "0.14" __pattern__ = r'https?://(?:www\.)?premium\.to/.*' @@ -24,9 +24,6 @@ class PremiumTo(SimpleHoster): ("stickell", "l.stickell@yahoo.it")] - MULTI_HOSTER = True - - def setup(self): self.resumeDownload = True self.chunkLimit = 1 |