diff options
author | Walter Purcaro <vuolter@gmail.com> | 2015-01-10 00:13:01 +0100 |
---|---|---|
committer | Walter Purcaro <vuolter@gmail.com> | 2015-01-10 00:13:01 +0100 |
commit | 9f427186b8e1c1d5b7cc2e16a7087271568e4390 (patch) | |
tree | a69110149cec22e82d6dd53134198d2dc204ff0c /module/plugins/hoster/MegaCoNz.py | |
parent | [BasePlugin] Bump up version (diff) | |
download | pyload-9f427186b8e1c1d5b7cc2e16a7087271568e4390.tar.xz |
[MegaCoNz][MegaCoNzFolder] Improve __pattern__
Diffstat (limited to 'module/plugins/hoster/MegaCoNz.py')
-rw-r--r-- | module/plugins/hoster/MegaCoNz.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/hoster/MegaCoNz.py b/module/plugins/hoster/MegaCoNz.py index ed334601a..9e23e0361 100644 --- a/module/plugins/hoster/MegaCoNz.py +++ b/module/plugins/hoster/MegaCoNz.py @@ -49,9 +49,9 @@ from module.utils import decode, fs_decode, fs_encode class MegaCoNz(Hoster): __name__ = "MegaCoNz" __type__ = "hoster" - __version__ = "0.24" + __version__ = "0.25" - __pattern__ = r'https?://(?:www\.)?mega\.co\.nz/#(?P<TYPE>N|)!(?P<ID>[\w^_]+)!(?P<KEY>[\w,\\-]+)' + __pattern__ = r'(?:https?://(?:www\.)?mega\.co\.nz/|mega:|chrome:.+?)#(?P<TYPE>N|)!(?P<ID>[\w^_]+)!(?P<KEY>[\w,\\-]+)' __description__ = """Mega.co.nz hoster plugin""" __license__ = "GPLv3" |