summaryrefslogtreecommitdiffstats
path: root/module/plugins/hoster/TwoSharedCom.py
diff options
context:
space:
mode:
Diffstat (limited to 'module/plugins/hoster/TwoSharedCom.py')
-rw-r--r--module/plugins/hoster/TwoSharedCom.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/module/plugins/hoster/TwoSharedCom.py b/module/plugins/hoster/TwoSharedCom.py
index d50248c4d..1f040dfc2 100644
--- a/module/plugins/hoster/TwoSharedCom.py
+++ b/module/plugins/hoster/TwoSharedCom.py
@@ -25,10 +25,10 @@ class TwoSharedCom(SimpleHoster):
self.resumeDownload = self.multiDL = True
def handleFree(self):
- found = re.search(self.LINK_PATTERN, self.html)
- if found is None:
+ m = re.search(self.LINK_PATTERN, self.html)
+ if m is None:
self.parseError('Download link')
- link = found.group(1)
+ link = m.group(1)
self.logDebug("Download URL %s" % link)
self.download(link)