mirror of
https://github.com/googlefonts/noto-emoji.git
synced 2025-06-07 15:27:59 +00:00
Fix unichr() to chr()
This commit is contained in:
parent
d5e2614842
commit
8df1e034b9
1 changed files with 1 additions and 1 deletions
|
@ -73,7 +73,7 @@ def _generate_row_cells(
|
||||||
return 'missing'
|
return 'missing'
|
||||||
|
|
||||||
def _text_cell(text_dir):
|
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)
|
return '<span class="efont" dir="%s">%s</span>' % (text_dir, text)
|
||||||
|
|
||||||
if font:
|
if font:
|
||||||
|
|
Loading…
Add table
Reference in a new issue