diff options
author | Stefano <l.stickell@yahoo.it> | 2014-03-04 21:33:30 +0100 |
---|---|---|
committer | Stefano <l.stickell@yahoo.it> | 2014-04-21 16:57:49 +0200 |
commit | 1861b96995a41d1fe179dd02ab5f367dba8a2852 (patch) | |
tree | 0da83af9074c34b3abd22717bf181be7d121fb0c /pyload/plugins/hoster/CyberlockerCh.py | |
parent | Merge pull request #511 from vuolter/s/hoster/RyushareCom (diff) | |
download | pyload-1861b96995a41d1fe179dd02ab5f367dba8a2852.tar.xz |
Merge pull request #535 from vuolter/s/mark_dead
Mark dead CyberlockerCh and CloudzerNet
(cherry picked from commit bce39ea47fe9ce6c2b964adaebf0be237234978b)
Diffstat (limited to 'pyload/plugins/hoster/CyberlockerCh.py')
-rw-r--r-- | pyload/plugins/hoster/CyberlockerCh.py | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/pyload/plugins/hoster/CyberlockerCh.py b/pyload/plugins/hoster/CyberlockerCh.py index 19a4473b3..a08bf8518 100644 --- a/pyload/plugins/hoster/CyberlockerCh.py +++ b/pyload/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) |