Skip to content

Commit 36d0e01

Browse files
committed
Revert "Fix non-existing method."
This reverts commit ce075d3.
1 parent 50e3813 commit 36d0e01

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

jupyter_console/ptshell.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -747,8 +747,8 @@ def handle_execute_reply(self, msg_id, timeout=None):
747747
content = msg["content"]
748748
status = content['status']
749749

750-
if status == "aborted":
751-
self.shell.write("Aborted\n")
750+
if status == 'aborted':
751+
self.write('Aborted\n')
752752
return
753753
elif status == 'ok':
754754
# handle payloads

0 commit comments

Comments
 (0)