diff options
author | Thierry Merle <thierry.merle@free.fr> | 2014-11-16 00:36:50 +0100 |
---|---|---|
committer | Walter Purcaro <vuolter@gmail.com> | 2014-11-16 00:36:50 +0100 |
commit | 63f7688d9f00a1446490406d8e62a07e014da0f0 (patch) | |
tree | b124dd32d338b02d95e0ee11fdab30b830a54f62 | |
parent | [SimpleHoster][OneFichierCom] Fix issue #836 ('status': 3) (diff) | |
download | pyload-63f7688d9f00a1446490406d8e62a07e014da0f0.tar.xz |
[UptoboxCom] Fix ERROR_PATTERN
-rw-r--r-- | module/plugins/hoster/UptoboxCom.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/module/plugins/hoster/UptoboxCom.py b/module/plugins/hoster/UptoboxCom.py index eeddb96b6..3c3fa45b0 100644 --- a/module/plugins/hoster/UptoboxCom.py +++ b/module/plugins/hoster/UptoboxCom.py @@ -6,7 +6,7 @@ from module.plugins.internal.XFSHoster import XFSHoster, create_getInfo class UptoboxCom(XFSHoster): __name__ = "UptoboxCom" __type__ = "hoster" - __version__ = "0.15" + __version__ = "0.16" __pattern__ = r'https?://(?:www\.)?uptobox\.com/\w{12}' @@ -22,6 +22,8 @@ class UptoboxCom(XFSHoster): LINK_PATTERN = r'"(https?://\w+\.uptobox\.com/d/.*?)"' + ERROR_PATTERN = r'>(You have to wait.+till next download.)<' #@TODO: Check XFSHoster ERROR_PATTERN + def setup(self): self.multiDL = True |