summaryrefslogtreecommitdiffstats
path: root/module/plugins/internal/MultiHoster.py
diff options
context:
space:
mode:
Diffstat (limited to 'module/plugins/internal/MultiHoster.py')
-rw-r--r--module/plugins/internal/MultiHoster.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/internal/MultiHoster.py b/module/plugins/internal/MultiHoster.py
index 6f0b4b636..d50df3943 100644
--- a/module/plugins/internal/MultiHoster.py
+++ b/module/plugins/internal/MultiHoster.py
@@ -3,7 +3,7 @@
import re
-from module.utils import removeChars
+from module.utils import remove_chars
from module.plugins.Hook import Hook
class MultiHoster(Hook):
@@ -49,7 +49,7 @@ class MultiHoster(Hook):
new_supported = []
for hoster in self.getHosterCached():
- name = removeChars(hoster.lower(), "-.")
+ name = remove_chars(hoster.lower(), "-.")
if name in pluginMap:
self.supported.append(pluginMap[name])