diff options
author | Walter Purcaro <vuolter@gmail.com> | 2013-11-20 01:55:10 +0100 |
---|---|---|
committer | Walter Purcaro <vuolter@gmail.com> | 2013-11-20 01:55:10 +0100 |
commit | 4acac8c000af4a3860d8b9cd9bcf6c5f0820facb (patch) | |
tree | 0375fd9bcc978b3878580adcc728de36d156a55b /module | |
parent | Hoster: PutlockerCom: More strict pattern + some code cosmetics (diff) | |
download | pyload-4acac8c000af4a3860d8b9cd9bcf6c5f0820facb.tar.xz |
Hoster: PutlockerCom: Pattern half reverted
Diffstat (limited to 'module')
-rw-r--r-- | module/plugins/hoster/PutlockerCom.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/module/plugins/hoster/PutlockerCom.py b/module/plugins/hoster/PutlockerCom.py index dab993f80..afe084028 100644 --- a/module/plugins/hoster/PutlockerCom.py +++ b/module/plugins/hoster/PutlockerCom.py @@ -26,7 +26,7 @@ from module.plugins.internal.SimpleHoster import SimpleHoster class PutlockerCom(SimpleHoster): __name__ = "PutlockerCom" __type__ = "hoster" - __pattern__ = r'http://(?:www\.)?putlocker\.com/(mobile/)?(file|embed)/(?P<ID>[a-zA-Z0-9]{15,16})' + __pattern__ = r'http://(?:www\.)?putlocker\.com/(mobile/)?(file|embed)/(?P<ID>[a-zA-Z0-9]+)' __version__ = "0.32" __description__ = """Putlocker.Com""" __author_name__ = ("jeix", "stickell", "Walter Purcaro") |