diff options
author | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-10-23 13:29:12 +0200 |
---|---|---|
committer | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-10-23 13:29:12 +0200 |
commit | c9b42f02f83a95d7741eee96247466d3b610b159 (patch) | |
tree | ba642be8eeb25233e83763aab2aa6227b31c7885 /module/plugins/crypter/FreetexthostCom.py | |
parent | [Dereferer] Don't preload (diff) | |
download | pyload-c9b42f02f83a95d7741eee96247466d3b610b159.tar.xz |
self.html -> self.data
Diffstat (limited to 'module/plugins/crypter/FreetexthostCom.py')
-rw-r--r-- | module/plugins/crypter/FreetexthostCom.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/module/plugins/crypter/FreetexthostCom.py b/module/plugins/crypter/FreetexthostCom.py index e959be93f..a967f81d4 100644 --- a/module/plugins/crypter/FreetexthostCom.py +++ b/module/plugins/crypter/FreetexthostCom.py @@ -23,7 +23,7 @@ class FreetexthostCom(SimpleCrypter): def get_links(self): - m = re.search(r'<div id="contentsinner">\s*(.+)<div class="viewcount">', self.html, re.S) + m = re.search(r'<div id="contentsinner">\s*(.+)<div class="viewcount">', self.data, re.S) if m is None: self.error(_("Unable to extract links")) links = m.group(1) |