diff options
author | Walter Purcaro <vuolter@gmail.com> | 2015-01-29 23:43:52 +0100 |
---|---|---|
committer | Walter Purcaro <vuolter@gmail.com> | 2015-01-29 23:43:52 +0100 |
commit | 0941f19ca5954297439b3cd99f19246c3458c8ad (patch) | |
tree | 11379c75b637c739349d979945824b0a59d74fbe /module/plugins/hoster | |
parent | [SevenZip] Repair not supported (diff) | |
download | pyload-0941f19ca5954297439b3cd99f19246c3458c8ad.tar.xz |
[UptoboxCom] Improve __pattern__
Diffstat (limited to 'module/plugins/hoster')
-rw-r--r-- | module/plugins/hoster/UptoboxCom.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/hoster/UptoboxCom.py b/module/plugins/hoster/UptoboxCom.py index dedb6ed1f..3f79e509e 100644 --- a/module/plugins/hoster/UptoboxCom.py +++ b/module/plugins/hoster/UptoboxCom.py @@ -6,9 +6,9 @@ from module.plugins.internal.XFSHoster import XFSHoster, create_getInfo class UptoboxCom(XFSHoster): __name__ = "UptoboxCom" __type__ = "hoster" - __version__ = "0.16" + __version__ = "0.17" - __pattern__ = r'https?://(?:www\.)?uptobox\.com/\w{12}' + __pattern__ = r'https?://(?:www\.)?(uptobox|uptostream)\.com/\w{12}' __description__ = """Uptobox.com hoster plugin""" __license__ = "GPLv3" |