diff options
author | Walter Purcaro <vuolter@gmail.com> | 2014-10-17 21:10:40 +0200 |
---|---|---|
committer | Walter Purcaro <vuolter@gmail.com> | 2014-10-17 21:10:40 +0200 |
commit | 6a6373e9b63ce7943f1a6592a641e3d8b3f31e09 (patch) | |
tree | e9b3b167308e4d70ce48e6e78173aa2fb9df7049 /module/plugins/accounts/TusfilesNet.py | |
parent | New accounts LinestorageCom and UploadcCom (diff) | |
download | pyload-6a6373e9b63ce7943f1a6592a641e3d8b3f31e09.tar.xz |
Fix TRAFFIC_LEFT_PATTERN in RapidfileshareNet and TusfilesNet accounts
Diffstat (limited to 'module/plugins/accounts/TusfilesNet.py')
-rw-r--r-- | module/plugins/accounts/TusfilesNet.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/accounts/TusfilesNet.py b/module/plugins/accounts/TusfilesNet.py index 775aab9c0..ab5b57834 100644 --- a/module/plugins/accounts/TusfilesNet.py +++ b/module/plugins/accounts/TusfilesNet.py @@ -11,7 +11,7 @@ from module.utils import parseFileSize class TusfilesNet(XFSPAccount): __name__ = "TusfilesNet" __type__ = "account" - __version__ = "0.03" + __version__ = "0.04" __description__ = """ Tusfile.net account plugin """ __license__ = "GPLv3" @@ -21,4 +21,4 @@ class TusfilesNet(XFSPAccount): HOSTER_URL = "http://www.tusfiles.net/" VALID_UNTIL_PATTERN = r'<span class="label label-default">([^<]+)</span>' - TRAFFIC_LEFT_PATTERN = r'<td><img src="//www\.tusfiles\.net/i/icon/meter\.png" alt=""/></td>\n<td> (?P<S>[^<]+)</td>' + TRAFFIC_LEFT_PATTERN = r'<td><img src="//www\.tusfiles\.net/i/icon/meter\.png" alt=""/></td>\n<td> (?P<S>[\d.,]+)\s*(?P<U>[\w^_]+)\s*</td>' |