diff options
author | Nitzo <nitzo2001@yahoo.com> | 2016-01-02 00:37:43 +0100 |
---|---|---|
committer | Nitzo <nitzo2001@yahoo.com> | 2016-01-02 00:37:43 +0100 |
commit | 7ab16b360739c4754c954ceb54b226ab0a30c215 (patch) | |
tree | c7d522cfe574f43ebb862d51f3693cd974cde04f /module/plugins/hooks/XFileSharing.py | |
parent | [ExternalScripts] fix #2251 + much more (diff) | |
download | pyload-7ab16b360739c4754c954ceb54b226ab0a30c215.tar.xz |
"is" is evil
Diffstat (limited to 'module/plugins/hooks/XFileSharing.py')
-rw-r--r-- | module/plugins/hooks/XFileSharing.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/module/plugins/hooks/XFileSharing.py b/module/plugins/hooks/XFileSharing.py index 4af246da8..3de4d02eb 100644 --- a/module/plugins/hooks/XFileSharing.py +++ b/module/plugins/hooks/XFileSharing.py @@ -84,7 +84,7 @@ class XFileSharing(Addon): self.log_info(_("Handle %d %s%s: %s") % (len(plugin_set), type, - "" if len(plugin_set) is 1 else "s", + "" if len(plugin_set) == 1 else "s", match_list.replace('\.', '.').replace('|', ', '))) else: plugin_list = [] |