Skip to content

Commit a6e409e

Browse files
committed
Fix %% magic command
1 parent e1da1cd commit a6e409e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

interpreter/terminal_interface/magic_commands.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@ def handle_magic_command(self, user_input):
255255
# Handle shell
256256
if user_input.startswith("%%"):
257257
code = user_input[2:].strip()
258-
self.computer.run("shell", code, stream=True, display=True)
258+
self.computer.run("shell", code, stream=False, display=True)
259259
print("")
260260
return
261261

0 commit comments

Comments
 (0)