diff options
| author | 2015-05-18 12:45:08 +0200 | |
|---|---|---|
| committer | 2015-05-18 12:45:08 +0200 | |
| commit | 0aa29b3284c28079cc8da3d8774bd111e6cf4abc (patch) | |
| tree | 2a3422f5b1afe046dda9f4b0bd4aefbf5b9313df /module/plugins | |
| parent | [SimpleHoster] Fix https://github.com/pyload/pyload/issues/1404 (diff) | |
| download | pyload-0aa29b3284c28079cc8da3d8774bd111e6cf4abc.tar.xz | |
[UptoboxCom] Set LOGIN_ACCOUNT to True
Diffstat (limited to 'module/plugins')
| -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 991bc640e..4dc3c07b9 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.18" + __version__ = "0.19" __pattern__ = r'https?://(?:www\.)?(uptobox|uptostream)\.com/\w{12}' @@ -15,6 +15,8 @@ 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' |
