summaryrefslogtreecommitdiffstats
path: root/module/plugins/hooks/RehostTo.py
diff options
context:
space:
mode:
Diffstat (limited to 'module/plugins/hooks/RehostTo.py')
-rw-r--r--module/plugins/hooks/RehostTo.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/hooks/RehostTo.py b/module/plugins/hooks/RehostTo.py
index 324ef9b91..48b0fd826 100644
--- a/module/plugins/hooks/RehostTo.py
+++ b/module/plugins/hooks/RehostTo.py
@@ -60,7 +60,7 @@ class RehostTo(Hook):
for hoster in self.getHostersCached():
name = removeChars(hoster.lower(), "-.")
- if pluginMap.has_key(name):
+ if name in pluginMap:
supported.append(pluginMap[name])
else:
new_supported.append(hoster)
@@ -81,4 +81,4 @@ class RehostTo(Hook):
dict = self.core.pluginManager.hosterPlugins["RehostTo"]
dict["pattern"] = regexp
- dict["re"] = re.compile(regexp) \ No newline at end of file
+ dict["re"] = re.compile(regexp)