summaryrefslogtreecommitdiffstats
path: root/pyload/plugin/hoster/VeohCom.py
diff options
context:
space:
mode:
Diffstat (limited to 'pyload/plugin/hoster/VeohCom.py')
-rw-r--r--pyload/plugin/hoster/VeohCom.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/pyload/plugin/hoster/VeohCom.py b/pyload/plugin/hoster/VeohCom.py
index 0fa118355..78080ee1d 100644
--- a/pyload/plugin/hoster/VeohCom.py
+++ b/pyload/plugin/hoster/VeohCom.py
@@ -43,8 +43,7 @@ class VeohCom(SimpleHoster):
m = re.search(pattern, self.html)
if m:
pyfile.name += ".mp4"
- link = m.group(1).replace("\\", "")
- self.download(link)
+ self.link = m.group(1).replace("\\", "")
return
else:
self.logInfo(_("No %s quality video found") % q.upper())