953 .format(Utilities.normabspath(self.ui.currentProg), status)) |
953 .format(Utilities.normabspath(self.ui.currentProg), status)) |
954 else: |
954 else: |
955 if self.ui.currentProg is None: |
955 if self.ui.currentProg is None: |
956 self.appendStdout.emit( |
956 self.appendStdout.emit( |
957 self.trUtf8('The program has terminated with an exit' |
957 self.trUtf8('The program has terminated with an exit' |
958 ' status of {0}.').format(status)) |
958 ' status of {0}.\n').format(status)) |
959 else: |
959 else: |
960 self.appendStdout.emit( |
960 self.appendStdout.emit( |
961 self.trUtf8('"{0}" has terminated with an exit' |
961 self.trUtf8('"{0}" has terminated with an exit' |
962 ' status of {1}.') |
962 ' status of {1}.\n') |
963 .format(Utilities.normabspath(self.ui.currentProg), status)) |
963 .format(Utilities.normabspath(self.ui.currentProg), status)) |
964 |
964 |
965 def __clientSyntaxError(self, message, filename, lineNo, characterNo): |
965 def __clientSyntaxError(self, message, filename, lineNo, characterNo): |
966 """ |
966 """ |
967 Private method to handle a syntax error in the debugged program. |
967 Private method to handle a syntax error in the debugged program. |