diff options
author | 2013-02-26 18:49:09 +0100 | |
---|---|---|
committer | 2013-02-26 18:49:09 +0100 | |
commit | 22e07b11b82beff95e913b24ee5dcb9f5175a116 (patch) | |
tree | d58518815d54451ccb19fb4a0f339aa8c79a1cb7 /module/plugins/hoster | |
parent | Merge pull request #17 from kmarty/stable (diff) | |
parent | Fix paid account access (contributed by wendelin) (diff) | |
download | pyload-22e07b11b82beff95e913b24ee5dcb9f5175a116.tar.xz |
Merge pull request #18 from kmarty/stable
Fixed error getting file size
Diffstat (limited to 'module/plugins/hoster')
-rw-r--r-- | module/plugins/hoster/UlozTo.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/hoster/UlozTo.py b/module/plugins/hoster/UlozTo.py index d46b303f4..5a930fd8a 100644 --- a/module/plugins/hoster/UlozTo.py +++ b/module/plugins/hoster/UlozTo.py @@ -27,12 +27,12 @@ class UlozTo(SimpleHoster): __name__ = "UlozTo" __type__ = "hoster" __pattern__ = r"http://(\w*\.)?(uloz\.to|ulozto\.(cz|sk|net)|bagruj.cz|zachowajto.pl)/(?:live/)?(?P<id>\w+/[^/?]*)" - __version__ = "0.90" + __version__ = "0.91" __description__ = """uloz.to""" __author_name__ = ("zoidberg") FILE_NAME_PATTERN = r'<a href="#download" class="jsShowDownload">(?P<N>[^<]+)</a>' - FILE_SIZE_PATTERN = r'<span id="fileSize">.*?(?P<S>[0-9.]+\s[kMG]B)</span>' + FILE_SIZE_PATTERN = r'<span id="fileSize">.*?(?P<S>[0-9.]+\s[kMG]?B)</span>' FILE_INFO_PATTERN = r'<p>File <strong>(?P<N>[^<]+)</strong> is password protected</p>' FILE_OFFLINE_PATTERN = r'<title>404 - Page not found</title>|<h1 class="h1">File (has been deleted|was banned)</h1>' FILE_SIZE_REPLACEMENTS = [('([0-9.]+)\s([kMG])B', convertDecimalPrefix)] |