summaryrefslogtreecommitdiffstats
path: root/module/plugins/hoster/Keep2shareCc.py
diff options
context:
space:
mode:
authorGravatar Sahil Shekhawat <sahilshekhawat01@gmail.com> 2015-01-11 14:54:48 +0100
committerGravatar Sahil Shekhawat <sahilshekhawat01@gmail.com> 2015-01-11 14:54:48 +0100
commitd2b60b5ceb369814a0de41c8b8744b5c4ed81523 (patch)
tree6619e01fc0e5f281e4d28678ec565860a86784ec /module/plugins/hoster/Keep2shareCc.py
parentupdated nitroflare.com's plugin (diff)
parentCode improvements (diff)
downloadpyload-d2b60b5ceb369814a0de41c8b8744b5c4ed81523.tar.xz
Merged with the updated nitroflare
Diffstat (limited to 'module/plugins/hoster/Keep2shareCc.py')
-rw-r--r--module/plugins/hoster/Keep2shareCc.py8
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)