diff options
author | 2015-10-23 13:29:12 +0200 | |
---|---|---|
committer | 2015-10-23 13:29:12 +0200 | |
commit | c9b42f02f83a95d7741eee96247466d3b610b159 (patch) | |
tree | ba642be8eeb25233e83763aab2aa6227b31c7885 /module/plugins/hoster/SizedriveCom.py | |
parent | [Dereferer] Don't preload (diff) | |
download | pyload-c9b42f02f83a95d7741eee96247466d3b610b159.tar.xz |
self.html -> self.data
Diffstat (limited to 'module/plugins/hoster/SizedriveCom.py')
-rw-r--r-- | module/plugins/hoster/SizedriveCom.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/hoster/SizedriveCom.py b/module/plugins/hoster/SizedriveCom.py index 9659d9438..47c0c077c 100644 --- a/module/plugins/hoster/SizedriveCom.py +++ b/module/plugins/hoster/SizedriveCom.py @@ -32,10 +32,10 @@ class SizedriveCom(SimpleHoster): def handle_free(self, pyfile): self.wait(5) - self.html = self.load("http://www.sizedrive.com/getdownload.php", + self.data = self.load("http://www.sizedrive.com/getdownload.php", post={'id': self.info['pattern']['ID']}) - m = re.search(r'<span id="boton_download" ><a href="(.+?)"', self.html) + m = re.search(r'<span id="boton_download" ><a href="(.+?)"', self.data) if m is not None: self.link = m.group(1) |