summaryrefslogtreecommitdiffstats
path: root/module/plugins/hoster/PromptfileCom.py
diff options
context:
space:
mode:
authorGravatar Walter Purcaro <vuolter@gmail.com> 2014-12-01 18:17:13 +0100
committerGravatar Walter Purcaro <vuolter@gmail.com> 2014-12-01 18:23:47 +0100
commit86d3b6249073947132ed3a9eeb1b1e987d19569a (patch)
tree8ad8ef328f38866c00acb394e00fd11bdc9b6c04 /module/plugins/hoster/PromptfileCom.py
parent[SimpleHoster] Fix some stuff, improve others (diff)
downloadpyload-86d3b6249073947132ed3a9eeb1b1e987d19569a.tar.xz
Update some plugins
Diffstat (limited to 'module/plugins/hoster/PromptfileCom.py')
-rw-r--r--module/plugins/hoster/PromptfileCom.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/module/plugins/hoster/PromptfileCom.py b/module/plugins/hoster/PromptfileCom.py
index 22fea09ea..af38c4e15 100644
--- a/module/plugins/hoster/PromptfileCom.py
+++ b/module/plugins/hoster/PromptfileCom.py
@@ -38,9 +38,8 @@ class PromptfileCom(SimpleHoster):
m = re.search(self.LINK_PATTERN, self.html)
if m is None:
self.error(_("LINK_PATTERN not found"))
- direct = m.group(1)
- self.logDebug("Found direct link: " + direct)
- self.download(direct, disposition=True)
+
+ self.download(m.group(1), disposition=True)
getInfo = create_getInfo(PromptfileCom)