diff options
Diffstat (limited to 'pyload/plugins')
-rw-r--r-- | pyload/plugins/MultiHoster.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/pyload/plugins/MultiHoster.py b/pyload/plugins/MultiHoster.py index 8825cc2f8..e79e24746 100644 --- a/pyload/plugins/MultiHoster.py +++ b/pyload/plugins/MultiHoster.py @@ -6,9 +6,10 @@ from pyload.utils import remove_chars from Account import Account + def normalize(domain): - """ Normalize domain/plugin name, so they are comparable """ - return remove_chars(domain.strip().lower(), "-.") + """ Normalize domain/plugin name, so they are comparable """ + return remove_chars(domain.strip().lower(), "-.") #noinspection PyUnresolvedReferences class MultiHoster(Account): |