summaryrefslogtreecommitdiffstats
path: root/module/plugins/hoster/HellshareCz.py
diff options
context:
space:
mode:
Diffstat (limited to 'module/plugins/hoster/HellshareCz.py')
-rw-r--r--module/plugins/hoster/HellshareCz.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/module/plugins/hoster/HellshareCz.py b/module/plugins/hoster/HellshareCz.py
index e4b508930..54f931eb2 100644
--- a/module/plugins/hoster/HellshareCz.py
+++ b/module/plugins/hoster/HellshareCz.py
@@ -46,10 +46,10 @@ class HellshareCz(SimpleHoster):
if not self.checkTrafficLeft():
self.fail("Not enough traffic left for user %s." % self.user)
- found = re.search(self.SHOW_WINDOW_PATTERN, self.html)
- if found is None:
+ m = re.search(self.SHOW_WINDOW_PATTERN, self.html)
+ if m is None:
self.parseError('SHOW WINDOW')
- self.url = "http://www.hellshare.com" + found.group(1)
+ self.url = "http://www.hellshare.com" + m.group(1)
self.logDebug("DOWNLOAD URL: " + self.url)
self.download(self.url)