summaryrefslogtreecommitdiffstats
path: root/pyload/plugins/hoster
diff options
context:
space:
mode:
authorGravatar Stefano <l.stickell@yahoo.it> 2013-08-05 14:30:16 +0200
committerGravatar Stefano <l.stickell@yahoo.it> 2013-08-07 15:03:01 +0200
commit203602cc0931b5f1af96d5b491a1513fdc02e8dc (patch)
treebf06032e2eb4d5e857c67ea8e9ec8eaf2efd60fd /pyload/plugins/hoster
parent180Upload: Test link (diff)
downloadpyload-203602cc0931b5f1af96d5b491a1513fdc02e8dc.tar.xz
PutlockerCom: ability to resume downloads even for free downloads(cherry picked from commit 1415a4eba232027edad23313ad07c527dfc1cd1c)
Diffstat (limited to 'pyload/plugins/hoster')
-rw-r--r--pyload/plugins/hoster/PutlockerCom.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/pyload/plugins/hoster/PutlockerCom.py b/pyload/plugins/hoster/PutlockerCom.py
index 752c9855f..0f62ea96d 100644
--- a/pyload/plugins/hoster/PutlockerCom.py
+++ b/pyload/plugins/hoster/PutlockerCom.py
@@ -28,7 +28,7 @@ class PutlockerCom(SimpleHoster):
__name__ = "PutlockerCom"
__type__ = "hoster"
__pattern__ = r'http://(www\.)?putlocker\.com/(file|embed)/[A-Z0-9]+'
- __version__ = "0.26"
+ __version__ = "0.27"
__description__ = """Putlocker.Com"""
__author_name__ = ("jeix", "stickell")
__author_mail__ = ("l.stickell@yahoo.it")
@@ -39,6 +39,7 @@ class PutlockerCom(SimpleHoster):
def handleFree(self):
self.multiDL = True
self.chunkLimit = -1
+ self.resumeDownload = True
self.pyfile.url = re.sub(r'http://putlocker\.com', r'http://www.putlocker.com', self.pyfile.url)
self.html = self.load(self.pyfile.url, decode=True)