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) |