diff options
author | Jeix <devnull@localhost> | 2010-08-17 17:24:31 +0200 |
---|---|---|
committer | Jeix <devnull@localhost> | 2010-08-17 17:24:31 +0200 |
commit | 153e779b243fafb3e69329b4d9eed8fbe375b6d4 (patch) | |
tree | 8c3fa64d8d59f8433a79394b33e817be8fef31c4 /module/plugins/hoster/HotfileCom.py | |
parent | pyLoad 0.4 (diff) | |
download | pyload-153e779b243fafb3e69329b4d9eed8fbe375b6d4.tar.xz |
FileserveCom
Diffstat (limited to 'module/plugins/hoster/HotfileCom.py')
-rw-r--r-- | module/plugins/hoster/HotfileCom.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/hoster/HotfileCom.py b/module/plugins/hoster/HotfileCom.py index 2f752d01f..bbd87bd09 100644 --- a/module/plugins/hoster/HotfileCom.py +++ b/module/plugins/hoster/HotfileCom.py @@ -71,7 +71,7 @@ class HotfileCom(Hoster): re_captcha = ReCaptcha(self) - challenge = re.search(r"http://api.recaptcha.net/challenge\?k=([0-9A-Za-z]+)", self.html[1]) + challenge = re.search(r"http://api\.recaptcha\.net/challenge\?k=([0-9A-Za-z]+)", self.html[1]) if challenge: challenge, result = re_captcha.challenge(challenge.group(1)) @@ -88,7 +88,7 @@ class HotfileCom(Hoster): - file_url = re.search("a href=\"(http://hotfile\.com/get/\S*?)\"", self.html[1]).group(1) + file_url = re.search(r'a href="(http://hotfile\.com/get/\S*?)"', self.html[1]).group(1) self.download(file_url) |