eric6/Debugger/DebugUI.py

changeset 7849
70e464748aaa
parent 7836
2f0d208b8137
child 7853
35dcac32984a
child 7857
5cbae4f7e35a
child 7924
8a96736d465e
diff -r 97e9b5cc51dc -r 70e464748aaa eric6/Debugger/DebugUI.py
--- a/eric6/Debugger/DebugUI.py	Wed Dec 02 19:09:38 2020 +0100
+++ b/eric6/Debugger/DebugUI.py	Fri Dec 04 18:29:31 2020 +0100
@@ -1046,7 +1046,7 @@
                         self.ui, Program,
                         self.tr('<p><b>{0}</b> has terminated with an exit'
                                 ' status of {1}.</p>{2}')
-                            .format(Utilities.normabspath(self.ui.currentProg),
+                            .format(os.path.abspath(self.ui.currentProg),
                                     status, info))
             else:
                 if message:
@@ -1077,7 +1077,7 @@
                         self.appendStdout.emit(self.tr(
                             '"{0}" has terminated with an exit status of'
                             ' {1}.\n{2}\n').format(
-                            Utilities.normabspath(self.ui.currentProg), status,
+                            os.path.abspath(self.ui.currentProg), status,
                             info))
 
     def __clientSyntaxError(self, message, filename, lineNo, characterNo):

eric ide

mercurial