diff options
author | Walter Purcaro <vuolter@gmail.com> | 2014-02-21 02:46:17 +0100 |
---|---|---|
committer | Walter Purcaro <vuolter@gmail.com> | 2014-03-04 17:59:17 +0100 |
commit | 58a1b3e5144697526aad5e0f8b7cf23411d69337 (patch) | |
tree | 98c103f7374747d51754ae2ed68db056d4f29ed2 /module | |
parent | Merge pull request #511 from vuolter/s/hoster/RyushareCom (diff) | |
download | pyload-58a1b3e5144697526aad5e0f8b7cf23411d69337.tar.xz |
Hoster: CyberlockerCh: Mark dead
Diffstat (limited to 'module')
-rw-r--r-- | module/plugins/hoster/CyberlockerCh.py | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/module/plugins/hoster/CyberlockerCh.py b/module/plugins/hoster/CyberlockerCh.py index 19a4473b3..a08bf8518 100644 --- a/module/plugins/hoster/CyberlockerCh.py +++ b/module/plugins/hoster/CyberlockerCh.py @@ -1,17 +1,16 @@ # -*- coding: utf-8 -*- -from module.plugins.hoster.XFileSharingPro import XFileSharingPro, create_getInfo +from module.plugins.internal.DeadHoster import DeadHoster, create_getInfo -class CyberlockerCh(XFileSharingPro): + +class CyberlockerCh(DeadHoster): __name__ = "CyberlockerCh" __type__ = "hoster" - __pattern__ = r"http://(www\.)?cyberlocker\.ch/\w{12}" - __version__ = "0.01" + __pattern__ = r'http://(?:www\.)?cyberlocker\.ch/\w+' + __version__ = "0.02" __description__ = """Cyberlocker.ch hoster plugin""" - __author_name__ = ("stickell") - __author_mail__ = ("l.stickell@yahoo.it") - - HOSTER_NAME = "cyberlocker.ch" + __author_name__ = "stickell" + __author_mail__ = "l.stickell@yahoo.it" getInfo = create_getInfo(CyberlockerCh) |