summaryrefslogtreecommitdiffstats
path: root/module/plugins/internal/SimpleHoster.py
diff options
context:
space:
mode:
Diffstat (limited to 'module/plugins/internal/SimpleHoster.py')
-rw-r--r--module/plugins/internal/SimpleHoster.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/module/plugins/internal/SimpleHoster.py b/module/plugins/internal/SimpleHoster.py
index 1f673a5c2..ac90e193a 100644
--- a/module/plugins/internal/SimpleHoster.py
+++ b/module/plugins/internal/SimpleHoster.py
@@ -24,8 +24,6 @@ def _error(self, reason, type):
msg += ": " + reason.strip() if reason else ""
msg += _(" | Plugin may be out of date")
- if self.core.debug:
- print_exc()
raise Fail(msg)
@@ -315,7 +313,7 @@ class SimpleHoster(Hoster):
self.req.http.c.setopt(FOLLOWLOCATION, 1)
- if parseFileInfo(self, url, html)[2] != 2:
+ if parseFileInfo(self, url, html)[2] is not 2:
try:
return re.search(r"Location\s*:\s*(.+)", self.req.http.header, re.I).group(1)
except: