Commit 3b90a8ee authored by Denis Bilenko's avatar Denis Bilenko

backdoor: when client sends quit() don't print the the traceback for SystemError

parent a49eca42
......@@ -83,6 +83,8 @@ class SocketConsole(Greenlet):
try:
console = InteractiveConsole(self.locals)
console.interact()
except SystemExit: # raised by quit()
pass
finally:
self.switch_out()
self.finalize()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment