From e5bd03ac708ad5c6ac09c0b795efdde9d2c001dc Mon Sep 17 00:00:00 2001 From: Simon Forman Date: Sun, 10 May 2020 12:18:34 -0700 Subject: [PATCH] Try logging just the commands. --- joy/gui/world.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/joy/gui/world.py b/joy/gui/world.py index be6f61c..098da9f 100644 --- a/joy/gui/world.py +++ b/joy/gui/world.py @@ -129,7 +129,8 @@ class StackDisplayWorld(World): command = command.strip() if self.has(command) and self.check(command) == False: # not in {True, None}: return - print('\njoy?', command) + # print('\njoy?', command) + print(command) super(StackDisplayWorld, self).interpret(command) def print_stack(self): @@ -163,7 +164,7 @@ class StackWorld(StackDisplayWorld): self.viewer.update_stack(self.stack) def print_stack(self): - StackDisplayWorld.print_stack(self) + # StackDisplayWorld.print_stack(self) if self.viewer: self.viewer.update_stack(self.stack) -- 2.11.0