Bug fix for the debugger python client 'quit' command (#1703)

JerryScript-DCO-1.0-Signed-off-by: Levente Orban orbanl@inf.u-szeged.hu
This commit is contained in:
Levente Orban
2017-03-31 08:34:40 +02:00
committed by László Langó
parent 750e0ca9d5
commit 5525f5241d
+1
View File
@@ -172,6 +172,7 @@ class DebuggerPrompt(Cmd):
def do_quit(self, args):
""" Exit JerryScript debugger """
self.do_delete("all")
self.do_exception("0") # disable the exception handler
self.exec_command(args, JERRY_DEBUGGER_CONTINUE)
self.stop = True
self.quit = True