diff options
author | 2015-04-14 01:49:49 +0200 | |
---|---|---|
committer | 2015-04-14 01:49:49 +0200 | |
commit | 20d88924fd6a3a5d15b521441a414aa3f8121e79 (patch) | |
tree | 2477c8c150048bdc580a6fe6000eb62d6db89b6f /module/plugins/hoster/VeohCom.py | |
parent | Update DepositfilesCom.py (diff) | |
parent | [UnSkipOnFail] Typo (diff) | |
download | pyload-20d88924fd6a3a5d15b521441a414aa3f8121e79.tar.xz |
Merge pull request #1 from pyload/stable
Sync
Diffstat (limited to 'module/plugins/hoster/VeohCom.py')
-rw-r--r-- | module/plugins/hoster/VeohCom.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/module/plugins/hoster/VeohCom.py b/module/plugins/hoster/VeohCom.py index 2f79f5aa4..57b24623b 100644 --- a/module/plugins/hoster/VeohCom.py +++ b/module/plugins/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()) |