summaryrefslogtreecommitdiffstats
path: root/module/plugins/hoster/Share4webCom.py
diff options
context:
space:
mode:
authorGravatar Walter Purcaro <vuolter@gmail.com> 2015-01-20 01:22:00 +0100
committerGravatar Walter Purcaro <vuolter@gmail.com> 2015-01-20 01:22:00 +0100
commitc4f167e267ba949ee20ec8a6d3c611d6dd93b325 (patch)
tree87c5ecfed9dc22af225944f0b9f6f5ee99d4486b /module/plugins/hoster/Share4webCom.py
parent[CaptchaService] Whitespaces cleanup (diff)
downloadpyload-c4f167e267ba949ee20ec8a6d3c611d6dd93b325.tar.xz
Fix plugin filename case
Diffstat (limited to 'module/plugins/hoster/Share4webCom.py')
-rw-r--r--module/plugins/hoster/Share4webCom.py22
1 files changed, 0 insertions, 22 deletions
diff --git a/module/plugins/hoster/Share4webCom.py b/module/plugins/hoster/Share4webCom.py
deleted file mode 100644
index 7a276c1fe..000000000
--- a/module/plugins/hoster/Share4webCom.py
+++ /dev/null
@@ -1,22 +0,0 @@
-# -*- coding: utf-8 -*-
-
-from module.plugins.hoster.UnibytesCom import UnibytesCom
-from module.plugins.internal.SimpleHoster import create_getInfo
-
-
-class Share4WebCom(UnibytesCom):
- __name__ = "Share4WebCom"
- __type__ = "hoster"
- __version__ = "0.11"
-
- __pattern__ = r'https?://(?:www\.)?share4web\.com/get/\w+'
-
- __description__ = """Share4web.com hoster plugin"""
- __license__ = "GPLv3"
- __authors__ = [("zoidberg", "zoidberg@mujmail.cz")]
-
-
- HOSTER_DOMAIN = "share4web.com"
-
-
-getInfo = create_getInfo(Share4WebCom)