--- roundup-0.5.8/roundup/cgi/client.py.old 2003-06-19 12:11:22.000000000 +0200 +++ roundup-0.5.8/roundup/cgi/client.py 2003-06-19 12:12:37.000000000 +0200 @@ -54,8 +54,8 @@ def clean_message(match, ok={'a':1,'i':1,'b':1,'br':1}): ''' Strip all non ,, and
tags from a string ''' - if ok.has_key(match.group(2)): - return match.group(1) + if ok.has_key(match.group(2).lower()): + return match.group(1).lower() return '<%s>'%match.group(2) class Client: