summaryrefslogtreecommitdiffstats
path: root/module/plugins/crypter/FreetexthostCom.py
diff options
context:
space:
mode:
authorGravatar Walter Purcaro <vuolter@gmail.com> 2014-07-20 03:25:14 +0200
committerGravatar Walter Purcaro <vuolter@gmail.com> 2014-07-20 03:25:14 +0200
commit05d258d98dd8c2faf0b769840fa1e3c4acccdce8 (patch)
tree20d379639d14a2b69deaa9e0376e33312b5bb994 /module/plugins/crypter/FreetexthostCom.py
parent[ShareRapidCom] Fix https://github.com/pyload/pyload/issues/694 (diff)
downloadpyload-05d258d98dd8c2faf0b769840fa1e3c4acccdce8.tar.xz
Diffstat (limited to 'module/plugins/crypter/FreetexthostCom.py')
-rw-r--r--module/plugins/crypter/FreetexthostCom.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/module/plugins/crypter/FreetexthostCom.py b/module/plugins/crypter/FreetexthostCom.py
index d03805722..a6fb78d8e 100644
--- a/module/plugins/crypter/FreetexthostCom.py
+++ b/module/plugins/crypter/FreetexthostCom.py
@@ -33,7 +33,7 @@ class FreetexthostCom(SimpleCrypter):
def getLinks(self):
m = re.search(r'<div id="contentsinner">\s*(.+)<div class="viewcount">', self.html, re.DOTALL)
- if not m:
+ if m is None:
self.fail('Unable to extract links | Plugin may be out-of-date')
links = m.group(1)
return links.strip().split("<br />\r\n")