From 09e758888215e3c8c2954f686f4debae06fd7656 Mon Sep 17 00:00:00 2001 From: Vincent Le Gallic Date: Wed, 19 Jun 2013 19:43:15 +0200 Subject: [PATCH] Boulet --- historien.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/historien.py b/historien.py index 33b9af6..eba4ac3 100755 --- a/historien.py +++ b/historien.py @@ -60,7 +60,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 class GoodCentury(Exception): pass -- 2.39.2