From ba55977b78bf7109441d873eb6b7a89676a25278 Mon Sep 17 00:00:00 2001 From: Eugene Date: Mon, 1 Jan 2018 18:53:19 +0300 Subject: [PATCH] Fixed variable name --- examples/widgets/unicode_textinput.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/widgets/unicode_textinput.py b/examples/widgets/unicode_textinput.py index 2abb01283..84924a847 100644 --- a/examples/widgets/unicode_textinput.py +++ b/examples/widgets/unicode_textinput.py @@ -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)