diff options
author | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-05-29 05:48:21 +0200 |
---|---|---|
committer | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-05-29 05:48:21 +0200 |
commit | fc3504b3d09d9167fe005ee28bf775f434f410cd (patch) | |
tree | e79855982678f8b822079b37015816eecb462789 /module/plugins/hoster | |
parent | [SimpleDereferer] Handle direct link (diff) | |
download | pyload-fc3504b3d09d9167fe005ee28bf775f434f410cd.tar.xz |
[UptoboxCom] Fixup
Diffstat (limited to 'module/plugins/hoster')
-rw-r--r-- | module/plugins/hoster/UptoboxCom.py | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/module/plugins/hoster/UptoboxCom.py b/module/plugins/hoster/UptoboxCom.py index 4dc3c07b9..2c06558e4 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.19" + __version__ = "0.20" __pattern__ = r'https?://(?:www\.)?(uptobox|uptostream)\.com/\w{12}' @@ -15,16 +15,12 @@ class UptoboxCom(XFSHoster): __authors__ = [("Walter Purcaro", "vuolter@gmail.com")] - LOGIN_ACCOUNT = True - INFO_PATTERN = r'"para_title">(?P<N>.+) \((?P<S>[\d.,]+) (?P<U>[\w^_]+)\)' OFFLINE_PATTERN = r'>(File not found|Access Denied|404 Not Found)' TEMP_OFFLINE_PATTERN = r'>Service Unavailable' 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 |