summaryrefslogtreecommitdiffstats
path: root/module/plugins/hoster/RgHostNet.py
diff options
context:
space:
mode:
Diffstat (limited to 'module/plugins/hoster/RgHostNet.py')
-rw-r--r--module/plugins/hoster/RgHostNet.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/module/plugins/hoster/RgHostNet.py b/module/plugins/hoster/RgHostNet.py
index fafa6f2f8..0762e3bd0 100644
--- a/module/plugins/hoster/RgHostNet.py
+++ b/module/plugins/hoster/RgHostNet.py
@@ -19,7 +19,7 @@ class RgHostNet(SimpleHoster):
def handleFree(self):
found = re.search(self.LINK_PATTERN, self.html)
- if not found:
+ if found is None:
self.parseError("Unable to detect the direct link")
download_link = found.group(1)
self.download(download_link, disposition=True)