summaryrefslogtreecommitdiffstats
path: root/module/plugins/hoster/BasketbuildCom.py
diff options
context:
space:
mode:
Diffstat (limited to 'module/plugins/hoster/BasketbuildCom.py')
-rw-r--r--module/plugins/hoster/BasketbuildCom.py7
1 files changed, 1 insertions, 6 deletions
diff --git a/module/plugins/hoster/BasketbuildCom.py b/module/plugins/hoster/BasketbuildCom.py
index 32380810f..db482c7c5 100644
--- a/module/plugins/hoster/BasketbuildCom.py
+++ b/module/plugins/hoster/BasketbuildCom.py
@@ -52,15 +52,10 @@ class BasketbuildCom(SimpleHoster):
self.logDebug("No wait time found")
try:
- link2 = re.search(r'id="dlLink">\s*<a href="(.+?)"', self.html).group(1)
+ self.link = re.search(r'id="dlLink">\s*<a href="(.+?)"', self.html).group(1)
except AttributeError:
self.error(_("DL-Link not found"))
- else:
- self.logDebug("DL-Link: %s" % link2)
-
- self.download(link2, disposition=True)
-
getInfo = create_getInfo(BasketbuildCom)