diff options
author | Walter Purcaro <vuolter@gmail.com> | 2015-01-09 17:35:08 +0100 |
---|---|---|
committer | Walter Purcaro <vuolter@gmail.com> | 2015-01-09 17:35:08 +0100 |
commit | b4a26e4bdcfa697b833abac4b2a500000f24684f (patch) | |
tree | 4a5edabd84a7a9a5f76765f98d879ad1b8ac927a /module/plugins/hoster/Keep2shareCc.py | |
parent | Fix SSL option in some hoster plugins (diff) | |
download | pyload-b4a26e4bdcfa697b833abac4b2a500000f24684f.tar.xz |
Fix some plugins name
Diffstat (limited to 'module/plugins/hoster/Keep2shareCc.py')
-rw-r--r-- | module/plugins/hoster/Keep2shareCc.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/module/plugins/hoster/Keep2shareCc.py b/module/plugins/hoster/Keep2shareCc.py index 86c28e93b..16bda27e0 100644 --- a/module/plugins/hoster/Keep2shareCc.py +++ b/module/plugins/hoster/Keep2shareCc.py @@ -8,14 +8,14 @@ from module.plugins.internal.CaptchaService import ReCaptcha from module.plugins.internal.SimpleHoster import _isDirectLink, SimpleHoster, create_getInfo -class Keep2shareCc(SimpleHoster): - __name__ = "Keep2shareCc" +class Keep2ShareCc(SimpleHoster): + __name__ = "Keep2ShareCc" __type__ = "hoster" __version__ = "0.18" __pattern__ = r'https?://(?:www\.)?(keep2share|k2s|keep2s)\.cc/file/(?P<ID>\w+)' - __description__ = """Keep2share.cc hoster plugin""" + __description__ = """Keep2Share.cc hoster plugin""" __license__ = "GPLv3" __authors__ = [("stickell", "l.stickell@yahoo.it"), ("Walter Purcaro", "vuolter@gmail.com")] @@ -127,4 +127,4 @@ class Keep2shareCc(SimpleHoster): self.download(urljoin("http://k2s.cc/", link), disposition=True) -getInfo = create_getInfo(Keep2shareCc) +getInfo = create_getInfo(Keep2ShareCc) |