diff options
Diffstat (limited to 'module/plugins/hooks/Captcha9Kw.py')
-rw-r--r-- | module/plugins/hooks/Captcha9Kw.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/module/plugins/hooks/Captcha9Kw.py b/module/plugins/hooks/Captcha9Kw.py index 714be8bc4..438a29165 100644 --- a/module/plugins/hooks/Captcha9Kw.py +++ b/module/plugins/hooks/Captcha9Kw.py @@ -13,7 +13,7 @@ from module.plugins.internal.Addon import Addon, threaded class Captcha9Kw(Addon): __name__ = "Captcha9Kw" __type__ = "hook" - __version__ = "0.32" + __version__ = "0.33" __status__ = "testing" __config__ = [("activated" , "bool" , "Activated" , False ), @@ -80,7 +80,7 @@ class Captcha9Kw(Addon): for opt in str(self.config.get('hoster_options').split('|')): details = map(str.strip, opt.split(':')) - if not details or details[0].lower() is not pluginname.lower(): + if not details or details[0].lower() != pluginname.lower(): continue for d in details: @@ -191,7 +191,7 @@ class Captcha9Kw(Addon): for opt in str(self.config.get('hoster_options').split('|')): details = map(str.strip, opt.split(':')) - if not details or details[0].lower() is not pluginname.lower(): + if not details or details[0].lower() != pluginname.lower(): continue for d in details: |