summaryrefslogtreecommitdiffstats
path: root/module/plugins
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-05 14:30:16 +0200
commit1415a4eba232027edad23313ad07c527dfc1cd1c (patch)
tree420d7cd655174e36790f5f3b0aec1f24323f9933 /module/plugins
parent180Upload: Test link (diff)
downloadpyload-1415a4eba232027edad23313ad07c527dfc1cd1c.tar.xz
PutlockerCom: ability to resume downloads even for free downloads
Diffstat (limited to 'module/plugins')
-rw-r--r--module/plugins/hoster/PutlockerCom.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/module/plugins/hoster/PutlockerCom.py b/module/plugins/hoster/PutlockerCom.py
index 752c9855f..0f62ea96d 100644
--- a/module/plugins/hoster/PutlockerCom.py
+++ b/module/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)