diff options
author | Mark Sapiro <msapiro@value.net> | 2011-04-26 08:45:42 -0700 |
---|---|---|
committer | Mark Sapiro <msapiro@value.net> | 2011-04-26 08:45:42 -0700 |
commit | ccf511f7634c630e2395a23fb89c73c5c6279652 (patch) | |
tree | df4d12d225d5fc970cb421e1410df1ef0b5be4d7 /Mailman | |
parent | 7be14e4b73cef594a81e8a051ac3e3b60ebb1187 (diff) | |
download | mailman2-ccf511f7634c630e2395a23fb89c73c5c6279652.tar.gz mailman2-ccf511f7634c630e2395a23fb89c73c5c6279652.tar.xz mailman2-ccf511f7634c630e2395a23fb89c73c5c6279652.zip |
Yet another change to the broken browser HTML escaping.
Diffstat (limited to 'Mailman')
-rw-r--r-- | Mailman/Utils.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Mailman/Utils.py b/Mailman/Utils.py index 4a9f34a6..f9a4e690 100644 --- a/Mailman/Utils.py +++ b/Mailman/Utils.py @@ -429,7 +429,8 @@ _ampre = re.compile('&((?:#[0-9]+|[a-z]+);)', re.IGNORECASE) _broken_browser = {'\x8b': '‹', '\x9b': '›', '\xbc': '¼', - '\xbd': '¾', + '\xbe': '¾', + '\xa2': '¢' } def websafe(s): # Archiver can pass unicode here. Just skip them as the |