diff options
author | Walter Purcaro <vuolter@gmail.com> | 2014-11-02 22:46:15 +0100 |
---|---|---|
committer | Walter Purcaro <vuolter@gmail.com> | 2014-11-02 22:46:15 +0100 |
commit | a372550e6eaf0d0235e68f2d20535123410e121f (patch) | |
tree | a4e3362865206e7ab585b190c6737f94254958cc /module/plugins/hoster/Share4webCom.py | |
parent | [XFileSharingPro] Fix hoster and crypter plugins (diff) | |
download | pyload-a372550e6eaf0d0235e68f2d20535123410e121f.tar.xz |
[LetitbitNet][Share4webCom][UnibytesCom] https support + use urljoin + update PATTERNs
Diffstat (limited to 'module/plugins/hoster/Share4webCom.py')
-rw-r--r-- | module/plugins/hoster/Share4webCom.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/module/plugins/hoster/Share4webCom.py b/module/plugins/hoster/Share4webCom.py index c2ede1d19..4634917ad 100644 --- a/module/plugins/hoster/Share4webCom.py +++ b/module/plugins/hoster/Share4webCom.py @@ -7,16 +7,16 @@ from module.plugins.internal.SimpleHoster import create_getInfo class Share4webCom(UnibytesCom): __name__ = "Share4webCom" __type__ = "hoster" - __version__ = "0.1" + __version__ = "0.11" - __pattern__ = r'http://(?:www\.)?share4web\.com/get/\w+' + __pattern__ = r'https?://(?:www\.)?share4web\.com/get/\w+' __description__ = """Share4web.com hoster plugin""" __license__ = "GPLv3" __authors__ = [("zoidberg", "zoidberg@mujmail.cz")] - HOSTER_NAME = "share4web.com" + HOSTER_DOMAIN = "share4web.com" getInfo = create_getInfo(UnibytesCom) |