Mercurial > xib
changeset 89:94fc538cdf65
Better format stripping for IRC messages
Signed-off-by: Charly COSTE <changaco@changaco.net>
author | Charly COSTE <changaco@changaco.net> |
---|---|
date | Tue, 15 Sep 2009 21:38:00 +0200 |
parents | 8b071629558e |
children | 965dd6f5fcc3 |
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]*(?:,[0-9]+)?|\x02)') +strip_formatting_re = re.compile('(?:\x03[0-9]*(?:,[0-9]+)?|\x02|\x1f)') class IRCError(Exception): """Represents an IRC exception."""