changeset 4573:6d2e9d293bda

<oerjan> sed -i \'s/U[+]/U[+]/\' bin/unicode
author HackBot
date Thu, 17 Apr 2014 22:14:23 +0000
parents 6eb8f50f2a37
children d09b208e869f
files bin/unicode
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/bin/unicode	Tue Apr 15 23:32:50 2014 +0000
+++ b/bin/unicode	Thu Apr 17 22:14:23 2014 +0000
@@ -3,7 +3,7 @@
 import re
 import sys
 import unicodedata
-def l(c): m = re.match('(?:U+)?([0-9a-f]{1,5})$', c, re.I); return unicodedata.lookup(c) if m is None else unichr(int(m.group(1),16))
+def l(c): m = re.match('(?:U[+])?([0-9a-f]{1,5})$', c, re.I); return unicodedata.lookup(c) if m is None else unichr(int(m.group(1),16))
 try:
     print u''.join(map(l, sys.argv[1:])).encode('utf-8')
 except KeyError: