Debugger/DebugUI.py

changeset 6431
1842436770c4
parent 6416
a915f8dd1ca6
child 6645
ad476851d7e0
equal deleted inserted replaced
6430:9fe4016a653b 6431:1842436770c4
1196 ' <b>{0}</b><br>"<b>{1}</b>"</p>') 1196 ' <b>{0}</b><br>"<b>{1}</b>"</p>')
1197 .format( 1197 .format(
1198 exceptionType, 1198 exceptionType,
1199 Utilities.html_encode(exceptionMessage))) 1199 Utilities.html_encode(exceptionMessage)))
1200 if res == E5MessageBox.Yes: 1200 if res == E5MessageBox.Yes:
1201 self.debugServer.setDebugging(True)
1201 self.exceptionInterrupt.emit() 1202 self.exceptionInterrupt.emit()
1202 stack = [] 1203 stack = []
1203 for fn, ln, func, args in stackTrace: 1204 for fn, ln, func, args in stackTrace:
1204 stack.append((fn, ln, func, args)) 1205 stack.append((fn, ln, func, args))
1205 self.clientStack.emit(stack) 1206 self.clientStack.emit(stack)

eric ide

mercurial