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/RapidfileshareNet.py | |
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/RapidfileshareNet.py')
-rw-r--r-- | module/plugins/accounts/RapidfileshareNet.py | 4 |
1 files changed, 2 insertions, 2 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^_]+))?' |