diff options
author | 2015-10-18 18:27:34 +0200 | |
---|---|---|
committer | 2015-10-18 18:27:34 +0200 | |
commit | 5836cf48bf1c0a1e5fce5039479ee20d01492e7f (patch) | |
tree | 0e95d4897e49d80ac98c28a35d5ce31bd4df5dfe /module/plugins/hoster/XFileSharingPro.py | |
parent | Dead plugins are stable, but still dead. (diff) | |
download | pyload-5836cf48bf1c0a1e5fce5039479ee20d01492e7f.tar.xz |
[XFileSharingPro] Fix regexp
Diffstat (limited to 'module/plugins/hoster/XFileSharingPro.py')
-rw-r--r-- | module/plugins/hoster/XFileSharingPro.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/hoster/XFileSharingPro.py b/module/plugins/hoster/XFileSharingPro.py index e202d23dd..c3a78b8a0 100644 --- a/module/plugins/hoster/XFileSharingPro.py +++ b/module/plugins/hoster/XFileSharingPro.py @@ -8,10 +8,10 @@ from module.plugins.internal.XFSHoster import XFSHoster, create_getInfo class XFileSharingPro(XFSHoster): __name__ = "XFileSharingPro" __type__ = "hoster" - __version__ = "0.54" + __version__ = "0.55" __status__ = "testing" - __pattern__ = r'https?://(?:www\.)?(?:\w+\.)*?(?P<DOMAIN>(?:[\d.]+|[\w\-^_]{3,}(?:\.[a-zA-Z]{2,}){1,2})(?:\:\d+)?)/(?:embed-)?\w{12}(?:\W|$)' + __pattern__ = r'https?://(?:www\.)?(?:\w+\.)*(?P<DOMAIN>(?:[\d.]+|[\w\-^_]{3,63}(?:\.[a-zA-Z]{2,}){1,2})(?:\:\d+)?)/(?:embed-)?\w{12}(?:\W|$)' __config__ = [("activated", "bool", "Activated", True)] __description__ = """XFileSharingPro dummy hoster plugin for hook""" |