Fixed variable name

This commit is contained in:
Eugene 2018-01-01 18:53:19 +03:00
parent a7b2d55dc6
commit ba55977b78
1 changed files with 1 additions and 1 deletions

View File

@ -234,7 +234,7 @@ class unicode_app(App):
for fdir in fonts_path:
for fpath in sorted(os.listdir(fdir)):
if fpath.endswith('.ttf'):
flist.append(font[:-4])
flist.append(fpath[:-4])
return sorted(flist)