From d8f42e324d71982a9d780080389b595317a8b099 Mon Sep 17 00:00:00 2001 From: Vincent Le Gallic Date: Wed, 19 Jun 2013 19:43:15 +0200 Subject: [PATCH] Boulet --- themis.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/themis.py b/themis.py index 3bf8773..c3a47f6 100755 --- a/themis.py +++ b/themis.py @@ -50,7 +50,8 @@ def ignore_event(serv, ev): else: exceptit = bool(irclib.mask_matches(usermask, exceptmask)) blackit = bool(irclib.mask_matches(usermask, blackmask)) - return blackit and not exceptit + if blackit and not exceptit: + return True reg_is_smiley = re.compile(u".*("+u"|".join(config.smileys)+u")") def is_smiley(chain): -- 2.39.2