diff options
author | guidobelix <guidobelix@hotmail.it> | 2014-10-22 21:41:11 +0200 |
---|---|---|
committer | Walter Purcaro <vuolter@gmail.com> | 2014-10-22 21:41:11 +0200 |
commit | e41f3d7f9bac5c5923d5e3e4ae4b373f6c90dc16 (patch) | |
tree | 075d68e4d13a1cb6dea058a48d97e34f71d44f6a /module/plugins/accounts | |
parent | [CaptchaService] Update ReCaptcha KEY_PATTERN (diff) | |
download | pyload-e41f3d7f9bac5c5923d5e3e4ae4b373f6c90dc16.tar.xz |
Broken TRAFFIC_LEFT_PATTERN in RapidfileshareNet and TusfilesNet account
Diffstat (limited to 'module/plugins/accounts')
-rw-r--r-- | module/plugins/accounts/RapidfileshareNet.py | 4 | ||||
-rw-r--r-- | module/plugins/accounts/TusfilesNet.py | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/module/plugins/accounts/RapidfileshareNet.py b/module/plugins/accounts/RapidfileshareNet.py index 63207acbb..5ca05fd91 100644 --- a/module/plugins/accounts/RapidfileshareNet.py +++ b/module/plugins/accounts/RapidfileshareNet.py @@ -6,7 +6,7 @@ from module.plugins.internal.XFSPAccount import XFSPAccount class RapidfileshareNet(XFSPAccount): __name__ = "RapidfileshareNet" __type__ = "account" - __version__ = "0.03" + __version__ = "0.04" __description__ = """Rapidfileshare.net account plugin""" __license__ = "GPLv3" @@ -15,4 +15,4 @@ class RapidfileshareNet(XFSPAccount): HOSTER_NAME = "rapidfileshare.net" - TRAFFIC_LEFT_PATTERN = r'>Traffic available today:</TD><TD><label for="name">\s*(?P<S>[\d.,]+)\s*(?P<U>[\w^_]+)\s*</label></TD></TR>' + TRAFFIC_LEFT_PATTERN = r'>Traffic available today:</TD><TD><label for="name">\s*(?P<S>[\d.,]+)\s*(?:(?P<U>[\w^_]+))?' diff --git a/module/plugins/accounts/TusfilesNet.py b/module/plugins/accounts/TusfilesNet.py index dcb9fa104..65f35a8e2 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.04" + __version__ = "0.05" __description__ = """ Tusfile.net account plugin """ __license__ = "GPLv3" @@ -21,4 +21,4 @@ class TusfilesNet(XFSPAccount): HOSTER_NAME = "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>[\d.,]+)\s*(?P<U>[\w^_]+)\s*</td>' + TRAFFIC_LEFT_PATTERN = r'<td><img src="//www\.tusfiles\.net/i/icon/meter\.png" alt=""/></td>\n<td> (?P<S>[\d.,]+)' |