Fix unichr() to chr()

pull/319/head
sunaoka 2020-08-18 15:35:42 +09:00
parent d5e2614842
commit 8df1e034b9
1 changed files with 1 additions and 1 deletions

View File

@ -73,7 +73,7 @@ def _generate_row_cells(
return 'missing'
def _text_cell(text_dir):
text = ''.join(unichr(cp) for cp in key)
text = ''.join(chr(cp) for cp in key)
return '<span class="efont" dir="%s">%s</span>' % (text_dir, text)
if font: