Commit 1ae900f8 authored by Guillaume Seguin's avatar Guillaume Seguin

WIP #561: well, let's get even useless prints through self.log

parent 55d1f9e9
...@@ -215,10 +215,10 @@ class pronsole(cmd.Cmd): ...@@ -215,10 +215,10 @@ class pronsole(cmd.Cmd):
try: try:
line = raw_input(self.prompt) line = raw_input(self.prompt)
except EOFError: except EOFError:
print "" self.log("")
self.do_exit("") self.do_exit("")
except KeyboardInterrupt: except KeyboardInterrupt:
print "" self.log("")
line = "" line = ""
else: else:
self.stdout.write(self.prompt) self.stdout.write(self.prompt)
......
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