comparison irclib.py @ 76:75a05faea5ca

Fixed IRC strip_formatting_re Signed-off-by: Charly COSTE <changaco@changaco.net>
author Charly COSTE <changaco@changaco.net>
date Thu, 03 Sep 2009 21:35:41 +0200
parents 6034087b1d10
children 4e18b435566a
comparison
equal deleted inserted replaced
75:6034087b1d10 76:75a05faea5ca
88 # ----- 88 # -----
89 # connection.quit() only sends QUIT to the server. 89 # connection.quit() only sends QUIT to the server.
90 # ERROR from the server triggers the error event and the disconnect event. 90 # ERROR from the server triggers the error event and the disconnect event.
91 # dropping of the connection triggers the disconnect event. 91 # dropping of the connection triggers the disconnect event.
92 92
93 strip_formatting_re = re.compile('(?:\x03[0-9]+|\x02)') 93 strip_formatting_re = re.compile('(?:\x03[0-9]*|\x02)')
94 94
95 class IRCError(Exception): 95 class IRCError(Exception):
96 """Represents an IRC exception.""" 96 """Represents an IRC exception."""
97 pass 97 pass
98 98