fix invalid XML char regex. Fixes #5427

This commit is contained in:
Yann Leboulanger 2011-01-06 21:01:43 +01:00
parent 6facbfa5cb
commit e50b1aa7b6
1 changed files with 1 additions and 1 deletions

View File

@ -1779,7 +1779,7 @@ class Interface:
self.sth_at_sth_dot_sth = r'\S+@\S+\.\S*[^\s)?]'
# Invalid XML chars
self.invalid_XML_chars = u'[\x00-\x08]|[\x0b-\x0c]|[\x0e-\x19]|'\
self.invalid_XML_chars = u'[\x00-\x08]|[\x0b-\x0c]|[\x0e-\x1f]|'\
u'[\ud800-\udfff]|[\ufffe-\uffff]'
def popup_emoticons_under_button(self, button, parent_win):