summaryrefslogtreecommitdiffstats
path: root/module/plugins/hooks/IRCInterface.py
diff options
context:
space:
mode:
authorGravatar Walter Purcaro <vuolter@users.noreply.github.com> 2015-07-24 23:57:04 +0200
committerGravatar Walter Purcaro <vuolter@users.noreply.github.com> 2015-07-24 23:57:04 +0200
commitdd13825fbd3df9e441200638cd2a92e3924dfff6 (patch)
tree9159fc1b77d6f6dbf1e7871ed2fb64886f433f1f /module/plugins/hooks/IRCInterface.py
parentCode cosmetics (diff)
downloadpyload-dd13825fbd3df9e441200638cd2a92e3924dfff6.tar.xz
Fix typo
Diffstat (limited to 'module/plugins/hooks/IRCInterface.py')
-rw-r--r--module/plugins/hooks/IRCInterface.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/module/plugins/hooks/IRCInterface.py b/module/plugins/hooks/IRCInterface.py
index c018850b6..08b1bad0c 100644
--- a/module/plugins/hooks/IRCInterface.py
+++ b/module/plugins/hooks/IRCInterface.py
@@ -150,7 +150,7 @@ class IRCInterface(Thread, Addon):
if not msg['origin'].split("!", 1)[0] in self.get_config('owner').split():
return
- if msg['target'].split("!", 1)[0] not is self.get_config('nick'):
+ if msg['target'].split("!", 1)[0] is not self.get_config('nick'):
return
if msg['action'] != "PRIVMSG":