changeset 87:500d47b1d8cd

Better color stripping for IRC messages Signed-off-by: Charly COSTE <changaco@changaco.net>
author Charly COSTE <changaco@changaco.net>
date Mon, 07 Sep 2009 00:51:43 +0200
parents bfa32b017fc9
children 8b071629558e
files irclib.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/irclib.py
+++ b/irclib.py
@@ -90,7 +90,7 @@ DEBUG = 0
 # ERROR from the server triggers the error event and the disconnect event.
 # dropping of the connection triggers the disconnect event.
 
-strip_formatting_re = re.compile('(?:\x03[0-9]*|\x02)')
+strip_formatting_re = re.compile('(?:\x03[0-9]*(?:,[0-9]+)?|\x02)')
 
 class IRCError(Exception):
     """Represents an IRC exception."""