diff options
Diffstat (limited to 'klippy/extras/display/display.py')
-rw-r--r-- | klippy/extras/display/display.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/klippy/extras/display/display.py b/klippy/extras/display/display.py index b416d9d2..b9e42094 100644 --- a/klippy/extras/display/display.py +++ b/klippy/extras/display/display.py @@ -223,7 +223,7 @@ class PrinterLCD: for i, text in enumerate(mixed_text.split('~')): if i & 1 == 0: # write text - self.lcd_chip.write_text(pos, row, text) + self.lcd_chip.write_text(pos, row, text.encode()) pos += len(text) else: # write glyph |