escape ideographic space

This commit is contained in:
Damien Elmes 2017-09-02 15:42:19 +10:00
parent 62a1382c0d
commit a0afec9938

View file

@ -893,8 +893,10 @@ by clicking on one on the left."""))
txt += a + ":"
else:
txt += a
if " " in txt or "(" in txt or ")" in txt:
txt = '"%s"' % txt
for chr in "  ()":
if chr in txt:
txt = '"%s"' % txt
break
items.append(txt)
txt = ""
txt = " ".join(items)