summaryrefslogtreecommitdiffstats
path: root/module/plugins/hoster/NowDownloadSx.py
diff options
context:
space:
mode:
authorGravatar GammaC0de <GammaC0de@users.noreply.github.com> 2015-04-14 01:49:49 +0200
committerGravatar GammaC0de <GammaC0de@users.noreply.github.com> 2015-04-14 01:49:49 +0200
commit20d88924fd6a3a5d15b521441a414aa3f8121e79 (patch)
tree2477c8c150048bdc580a6fe6000eb62d6db89b6f /module/plugins/hoster/NowDownloadSx.py
parentUpdate DepositfilesCom.py (diff)
parent[UnSkipOnFail] Typo (diff)
downloadpyload-20d88924fd6a3a5d15b521441a414aa3f8121e79.tar.xz
Merge pull request #1 from pyload/stable
Sync
Diffstat (limited to 'module/plugins/hoster/NowDownloadSx.py')
-rw-r--r--module/plugins/hoster/NowDownloadSx.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/module/plugins/hoster/NowDownloadSx.py b/module/plugins/hoster/NowDownloadSx.py
index 5ef36d270..a1cf9baf7 100644
--- a/module/plugins/hoster/NowDownloadSx.py
+++ b/module/plugins/hoster/NowDownloadSx.py
@@ -55,11 +55,11 @@ class NowDownloadSx(SimpleHoster):
self.html = self.load(baseurl + str(continuelink.group(1)))
- url = re.search(self.LINK_FREE_PATTERN, self.html)
- if url is None:
+ m = re.search(self.LINK_FREE_PATTERN, self.html)
+ if m is None:
self.error(_("Download link not found"))
- self.download(str(url.group(1)))
+ self.link = m.group(1)
getInfo = create_getInfo(NowDownloadSx)