summaryrefslogtreecommitdiffstats
path: root/module/plugins/hoster/FiledropperCom.py
diff options
context:
space:
mode:
authorGravatar Walter Purcaro <vuolter@users.noreply.github.com> 2015-10-23 13:29:12 +0200
committerGravatar Walter Purcaro <vuolter@users.noreply.github.com> 2015-10-23 13:29:12 +0200
commitc9b42f02f83a95d7741eee96247466d3b610b159 (patch)
treeba642be8eeb25233e83763aab2aa6227b31c7885 /module/plugins/hoster/FiledropperCom.py
parent[Dereferer] Don't preload (diff)
downloadpyload-c9b42f02f83a95d7741eee96247466d3b610b159.tar.xz
self.html -> self.data
Diffstat (limited to 'module/plugins/hoster/FiledropperCom.py')
-rw-r--r--module/plugins/hoster/FiledropperCom.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/hoster/FiledropperCom.py b/module/plugins/hoster/FiledropperCom.py
index 1a193c0f7..761b85c7a 100644
--- a/module/plugins/hoster/FiledropperCom.py
+++ b/module/plugins/hoster/FiledropperCom.py
@@ -31,13 +31,13 @@ class FiledropperCom(SimpleHoster):
def handle_free(self, pyfile):
- m = re.search(r'img id="img" src="(.+?)"', self.html)
+ m = re.search(r'img id="img" src="(.+?)"', self.data)
if m is None:
self.fail(_("Captcha not found"))
captcha_code = self.captcha.decrypt("http://www.filedropper.com/%s" % m.group(1))
- m = re.search(r'method="post" action="(.+?)"', self.html)
+ m = re.search(r'method="post" action="(.+?)"', self.data)
if m is not None:
self.download(urlparse.urljoin("http://www.filedropper.com/", m.group(1)),
post={'code': captcha_code})