diff options
author | Walter Purcaro <vuolter@gmail.com> | 2014-11-09 22:21:51 +0100 |
---|---|---|
committer | Walter Purcaro <vuolter@gmail.com> | 2014-11-09 22:21:51 +0100 |
commit | 5fe85e1ec8dd4d54d55491d26a5c41a0bde38176 (patch) | |
tree | b8c8af5611c251db89f7768c61998cc99cdf615d | |
parent | [Keep2shareCc] Account plugin (diff) | |
download | pyload-5fe85e1ec8dd4d54d55491d26a5c41a0bde38176.tar.xz |
[Keep2shareCc] Fix file name
-rw-r--r-- | module/plugins/hoster/Keep2shareCc.py (renamed from 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 fb4352147..6791998e2 100644 --- a/module/plugins/hoster/Keep2shareCC.py +++ b/module/plugins/hoster/Keep2shareCc.py @@ -8,10 +8,10 @@ from module.plugins.internal.CaptchaService import ReCaptcha from module.plugins.internal.SimpleHoster import SimpleHoster, create_getInfo -class Keep2shareCC(SimpleHoster): - __name__ = "Keep2shareCC" +class Keep2shareCc(SimpleHoster): + __name__ = "Keep2shareCc" __type__ = "hoster" - __version__ = "0.13" + __version__ = "0.14" __pattern__ = r'https?://(?:www\.)?(keep2share|k2s|keep2s)\.cc/file/(?P<ID>\w+)' @@ -113,4 +113,4 @@ class Keep2shareCC(SimpleHoster): self.base_url = "%s://%s" % (p.scheme, p.hostname) -getInfo = create_getInfo(Keep2shareCC) +getInfo = create_getInfo(Keep2shareCc) |