eric6/Debugger/DebugUI.py

changeset 7857
5cbae4f7e35a
parent 7849
70e464748aaa
child 7862
817ef8e0fa66
diff -r dc28e707a0d9 -r 5cbae4f7e35a eric6/Debugger/DebugUI.py
--- a/eric6/Debugger/DebugUI.py	Sat Dec 05 18:12:23 2020 +0100
+++ b/eric6/Debugger/DebugUI.py	Sat Dec 05 18:25:56 2020 +0100
@@ -1040,14 +1040,16 @@
                     E5MessageBox.information(
                         self.ui, Program,
                         self.tr('<p>The program has terminated with an exit'
-                                ' status of {0}.</p>{1}').format(status, info))
+                                ' status of {0}.</p>{1}').format(status, info)
+                    )
                 else:
                     E5MessageBox.information(
                         self.ui, Program,
                         self.tr('<p><b>{0}</b> has terminated with an exit'
-                                ' status of {1}.</p>{2}')
-                            .format(os.path.abspath(self.ui.currentProg),
-                                    status, info))
+                                ' status of {1}.</p>{2}').format(
+                            os.path.abspath(self.ui.currentProg),
+                            status, info)
+                    )
             else:
                 if message:
                     info = self.tr("Message: {0}").format(
@@ -1072,13 +1074,15 @@
                     if self.ui.currentProg is None:
                         self.appendStdout.emit(self.tr(
                             'The program has terminated with an exit status'
-                            ' of {0}.\n{1}\n').format(status, info))
+                            ' of {0}.\n{1}\n').format(status, info)
+                        )
                     else:
                         self.appendStdout.emit(self.tr(
                             '"{0}" has terminated with an exit status of'
                             ' {1}.\n{2}\n').format(
                             os.path.abspath(self.ui.currentProg), status,
-                            info))
+                            info)
+                        )
 
     def __clientSyntaxError(self, message, filename, lineNo, characterNo):
         """

eric ide

mercurial