diff options
| author | troido <troido@hotmail.com> | 2018-01-02 21:26:46 +0100 |
|---|---|---|
| committer | troido <troido@hotmail.com> | 2018-01-02 21:26:46 +0100 |
| commit | 44c26befaab94781e35d159db82d875bff2ed31e (patch) | |
| tree | 2667a10afd1b62c1217f9bce6b266a5d114cac46 /asciifarm/client/display/display.py | |
| parent | 8cd98452054fbfe46bc3c78b5b844742e7ed07a4 (diff) | |
keybindings are now executed a bit smarter as hy code
Diffstat (limited to 'asciifarm/client/display/display.py')
| -rw-r--r-- | asciifarm/client/display/display.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/asciifarm/client/display/display.py b/asciifarm/client/display/display.py index abc3616..8515d65 100644 --- a/asciifarm/client/display/display.py +++ b/asciifarm/client/display/display.py @@ -133,7 +133,7 @@ class Display: def getString(self): """This does actually read input""" - return self.textInput.getString() + return str(self.textInput.getString(), "utf-8") def update(self): changed = False |
