diff options
author | Walter Purcaro <vuolter@gmail.com> | 2014-11-23 04:41:17 +0100 |
---|---|---|
committer | Walter Purcaro <vuolter@gmail.com> | 2014-11-23 04:41:17 +0100 |
commit | 2ca8cc959a587992dc389d6baf71dd3e4f66df1c (patch) | |
tree | 16b88f17c04cee67ea78e5ae5b3659a4f8460aad /module/plugins/hoster/TurbobitNet.py | |
parent | Fix missing create_getInfo in dead crypters (diff) | |
download | pyload-2ca8cc959a587992dc389d6baf71dd3e4f66df1c.tar.xz |
Fix some URL_REPLACEMENTS
Diffstat (limited to 'module/plugins/hoster/TurbobitNet.py')
-rw-r--r-- | module/plugins/hoster/TurbobitNet.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/hoster/TurbobitNet.py b/module/plugins/hoster/TurbobitNet.py index 19ae766cb..7426ea35c 100644 --- a/module/plugins/hoster/TurbobitNet.py +++ b/module/plugins/hoster/TurbobitNet.py @@ -17,7 +17,7 @@ from module.plugins.internal.SimpleHoster import SimpleHoster, create_getInfo, t class TurbobitNet(SimpleHoster): __name__ = "TurbobitNet" __type__ = "hoster" - __version__ = "0.14" + __version__ = "0.15" __pattern__ = r'http://(?:www\.)?turbobit\.net/(?:download/free/)?(?P<ID>\w+)' @@ -27,7 +27,7 @@ class TurbobitNet(SimpleHoster): ("prOq", None)] - URL_REPLACEMENTS = [(__pattern__, "http://turbobit.net/\g<ID>.html")] + URL_REPLACEMENTS = [(__pattern__ + ".*", "http://turbobit.net/\g<ID>.html")] COOKIES = [("turbobit.net", "user_lang", "en")] |