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/RapidfileshareNet.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/RapidfileshareNet.py')
-rw-r--r-- | module/plugins/accounts/RapidfileshareNet.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/module/plugins/accounts/RapidfileshareNet.py b/module/plugins/accounts/RapidfileshareNet.py index 99a4af98b..4a146f398 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.02" + __version__ = "0.03" __description__ = """Rapidfileshare.net account plugin""" __license__ = "GPLv3" @@ -15,5 +15,4 @@ class RapidfileshareNet(XFSPAccount): HOSTER_URL = "http://www.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^_]+)\s*</label></TD></TR>' |