diff options
author | Walter Purcaro <vuolter@gmail.com> | 2013-11-24 00:13:13 +0100 |
---|---|---|
committer | Walter Purcaro <vuolter@gmail.com> | 2013-11-24 00:13:13 +0100 |
commit | 260c66499fb04ad8b1af17a971d659112bf8f967 (patch) | |
tree | 22c8fa72c33e5a9b8ea0ce6191d90c35bf0b775f /module | |
parent | Hoster: BayfilesCom: Patterns updated (diff) | |
download | pyload-260c66499fb04ad8b1af17a971d659112bf8f967.tar.xz |
Hoster: BayfilesCom: Less strict pattern
Diffstat (limited to 'module')
-rw-r--r-- | module/plugins/hoster/BayfilesCom.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/module/plugins/hoster/BayfilesCom.py b/module/plugins/hoster/BayfilesCom.py index 589540369..a7a2c75d4 100644 --- a/module/plugins/hoster/BayfilesCom.py +++ b/module/plugins/hoster/BayfilesCom.py @@ -26,7 +26,7 @@ from module.common.json_layer import json_loads class BayfilesCom(SimpleHoster): __name__ = "BayfilesCom" __type__ = "hoster" - __pattern__ = r"https?://(?:www\.)?bayfiles\.(com|net)/file/(?P<ID>[a-zA-Z0-9]{4}/[a-zA-Z0-9]{6}/[^/]+)" + __pattern__ = r"https?://(?:www\.)?bayfiles\.(com|net)/file/(?P<ID>[a-zA-Z0-9]+/[a-zA-Z0-9]+/[^/]+)" __version__ = "0.06" __description__ = """Bayfiles.com plugin - free only""" __author_name__ = ("zoidberg", "Walter Purcaro") |