Fixes: #40355 Lookup bytes no good.
This commit is contained in:
parent
cf5c618376
commit
c1a9fc2c28
|
|
@ -302,7 +302,6 @@ class TextViewerWidget(tk.Text, MouseBindingsMixin, SavingMixin):
|
||||||
|
|
||||||
def run_command(self, command):
|
def run_command(self, command):
|
||||||
'''Given a string run it on the stack, report errors.'''
|
'''Given a string run it on the stack, report errors.'''
|
||||||
command = command.encode('utf_8')
|
|
||||||
try:
|
try:
|
||||||
self.world.interpret(command)
|
self.world.interpret(command)
|
||||||
except SystemExit:
|
except SystemExit:
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue