summaryrefslogtreecommitdiffstats
path: root/module/plugins/hoster/NarodRu.py
diff options
context:
space:
mode:
Diffstat (limited to 'module/plugins/hoster/NarodRu.py')
-rw-r--r--module/plugins/hoster/NarodRu.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/hoster/NarodRu.py b/module/plugins/hoster/NarodRu.py
index d47221444..68815cf7c 100644
--- a/module/plugins/hoster/NarodRu.py
+++ b/module/plugins/hoster/NarodRu.py
@@ -40,7 +40,7 @@ class NarodRu(SimpleHoster):
(r"/start/[0-9]+\.\w+-narod\.yandex\.ru/([0-9]{6,15})/\w+/(\w+)", r"/disk/\1/\2")]
CAPTCHA_PATTERN = r'<number url="(.*?)">(\w+)</number>'
- DOWNLOAD_LINK_PATTERN = r'<a class="h-link" rel="yandex_bar" href="(.+?)">'
+ LINK_PATTERN = r'<a class="h-link" rel="yandex_bar" href="(.+?)">'
def handleFree(self):
for _ in xrange(5):
@@ -53,7 +53,7 @@ class NarodRu(SimpleHoster):
post_data['rep'] = self.decryptCaptcha(captcha_url)
self.html = self.load(self.pyfile.url, post=post_data, decode=True)
- found = re.search(self.DOWNLOAD_LINK_PATTERN, self.html)
+ found = re.search(self.LINK_PATTERN, self.html)
if found:
url = 'http://narod.ru' + found.group(1)
self.correctCaptcha()