diff options
author | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-08-04 22:08:42 +0200 |
---|---|---|
committer | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-08-04 22:08:42 +0200 |
commit | f80576bd8c809932dd9f62483402ec18532699b2 (patch) | |
tree | 72d15b9a4e2ee65e2823293458d2063078b110ef /module/plugins/hoster | |
parent | Merge pull request #1705 from GammaC0de/patch-2 (diff) | |
download | pyload-f80576bd8c809932dd9f62483402ec18532699b2.tar.xz |
Some fixes (2)
Diffstat (limited to 'module/plugins/hoster')
-rw-r--r-- | module/plugins/hoster/UlozTo.py | 4 | ||||
-rw-r--r-- | module/plugins/hoster/ZDF.py | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/module/plugins/hoster/UlozTo.py b/module/plugins/hoster/UlozTo.py index 2653b720e..b402433a4 100644 --- a/module/plugins/hoster/UlozTo.py +++ b/module/plugins/hoster/UlozTo.py @@ -15,7 +15,7 @@ def convert_decimal_prefix(m): class UlozTo(SimpleHoster): __name__ = "UlozTo" __type__ = "hoster" - __version__ = "1.12" + __version__ = "1.13" __status__ = "testing" __pattern__ = r'http://(?:www\.)?(uloz\.to|ulozto\.(cz|sk|net)|bagruj\.cz|zachowajto\.pl)/(?:live/)?(?P<ID>\w+/[^/?]*)' @@ -32,7 +32,7 @@ class UlozTo(SimpleHoster): OFFLINE_PATTERN = r'<title>404 - Page not found</title>|<h1 class="h1">File (has been deleted|was banned)</h1>' URL_REPLACEMENTS = [(r'(?<=http://)([^/]+)', "www.ulozto.net")] - SIZE_REPLACEMENTS = [(r'([\d.]+)\s([kMG])B', convertDecimalPrefix)] + SIZE_REPLACEMENTS = [(r'([\d.]+)\s([kMG])B', convert_decimal_prefix)] CHECK_TRAFFIC = True diff --git a/module/plugins/hoster/ZDF.py b/module/plugins/hoster/ZDF.py index b00077cce..f0b85d11a 100644 --- a/module/plugins/hoster/ZDF.py +++ b/module/plugins/hoster/ZDF.py @@ -10,7 +10,7 @@ from module.plugins.internal.Hoster import Hoster class ZDF(Hoster): __name__ = "ZDF Mediathek" __type__ = "hoster" - __version__ = "0.83" + __version__ = "0.84" __status__ = "testing" __pattern__ = r'http://(?:www\.)?zdf\.de/ZDFmediathek/\D*(\d+)\D*' |