From c1a9fc2c289c3d7d4d4104969000a23fbdf5bef6 Mon Sep 17 00:00:00 2001 From: Simon Forman Date: Fri, 24 Apr 2020 12:05:39 -0700 Subject: [PATCH] Fixes: #40355 Lookup bytes no good. --- joy/gui/textwidget.py | 1 - 1 file changed, 1 deletion(-) diff --git a/joy/gui/textwidget.py b/joy/gui/textwidget.py index 8bb25fd..c8cbd40 100644 --- a/joy/gui/textwidget.py +++ b/joy/gui/textwidget.py @@ -302,7 +302,6 @@ class TextViewerWidget(tk.Text, MouseBindingsMixin, SavingMixin): def run_command(self, command): '''Given a string run it on the stack, report errors.''' - command = command.encode('utf_8') try: self.world.interpret(command) except SystemExit: -- 2.11.0