From 06835f4cfbf1d7709f73b6f3f395c54cb34d6af4 Mon Sep 17 00:00:00 2001 From: Kiooeht Date: Thu, 12 May 2011 07:49:06 -0700 Subject: [PATCH] Don't log messages to Nickserv (it's private, passwords and all that) --- pesterchum.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pesterchum.py b/pesterchum.py index d3046df..2efa808 100644 --- a/pesterchum.py +++ b/pesterchum.py @@ -92,6 +92,7 @@ class PesterLog(object): if not self.parent.config.logMemos(): return else: if not self.parent.config.logPesters(): return + if str(handle).upper() == "NICKSERV": return #watch out for illegal characters handle = re.sub(r'[<>:"/\\|?*]', "_", handle) #time = strftime("[%H:%M:%S] ")