diff options
author | Stefano <l.stickell@yahoo.it> | 2013-10-13 17:51:10 +0200 |
---|---|---|
committer | Stefano <l.stickell@yahoo.it> | 2013-10-13 17:51:10 +0200 |
commit | 907728dc54e7567e37b5e69114d8550afa846b82 (patch) | |
tree | 14425247bc9c7298f5eba3b335f8c0b0955368c6 /module/plugins/hoster | |
parent | MultiHosters: no need an account if the link has already been converted. (diff) | |
download | pyload-907728dc54e7567e37b5e69114d8550afa846b82.tar.xz |
Putlocker: fixed #306
Diffstat (limited to 'module/plugins/hoster')
-rw-r--r-- | module/plugins/hoster/PutlockerCom.py | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/module/plugins/hoster/PutlockerCom.py b/module/plugins/hoster/PutlockerCom.py index 02205f9cc..8d1305820 100644 --- a/module/plugins/hoster/PutlockerCom.py +++ b/module/plugins/hoster/PutlockerCom.py @@ -17,8 +17,6 @@ @author: jeix """ -# http://www.putlocker.com/file/83C174C844583CF7 - import re from module.plugins.internal.SimpleHoster import SimpleHoster @@ -28,7 +26,7 @@ class PutlockerCom(SimpleHoster): __name__ = "PutlockerCom" __type__ = "hoster" __pattern__ = r'http://(www\.)?putlocker\.com/(file|embed)/[A-Z0-9]+' - __version__ = "0.27" + __version__ = "0.28" __description__ = """Putlocker.Com""" __author_name__ = ("jeix", "stickell") __author_mail__ = ("l.stickell@yahoo.it") @@ -46,7 +44,7 @@ class PutlockerCom(SimpleHoster): link = self._getLink() if not link.startswith('http://'): link = "http://www.putlocker.com" + link - self.download(link, disposition=True) + self.download(link) def _getLink(self): hash_data = re.search(r'<input type="hidden" value="([a-z0-9]+)" name="hash">', self.html) |