--- a/src/eric7/Debugger/DebugUI.py Tue Oct 18 09:10:24 2022 +0200 +++ b/src/eric7/Debugger/DebugUI.py Tue Oct 18 10:50:38 2022 +0200 @@ -2094,7 +2094,7 @@ if not doNotStart: if runProject and self.project.getProjectType() in ["E7Plugin"]: argv = '--plugin="{0}" {1}'.format(fn, argv) - fn = os.path.join(os.path.dirname(__file__), "..", "eric7_ide.py") + fn = "" # script name of the eric IDE is set in debug client self.debugViewer.initCallStackViewer(runProject) @@ -2298,7 +2298,7 @@ if not doNotStart: if runProject and self.project.getProjectType() in ["E7Plugin"]: argv = '--plugin="{0}" {1}'.format(fn, argv) - fn = os.path.join(os.path.dirname(__file__), "..", "eric7_ide.py") + fn = "" # script name of the eric IDE is set in debug client self.debugViewer.initCallStackViewer(runProject) @@ -2494,7 +2494,7 @@ if not doNotStart: if runProject and self.project.getProjectType() in ["E7Plugin"]: argv = '--plugin="{0}" {1}'.format(fn, argv) - fn = os.path.join(os.path.dirname(__file__), "..", "eric7_ide.py") + fn = "" # script name of the eric IDE is set in debug client self.debugViewer.initCallStackViewer(runProject) @@ -2713,7 +2713,7 @@ if not doNotStart: if debugProject and self.project.getProjectType() in ["E7Plugin"]: argv = '--plugin="{0}" {1}'.format(fn, argv) - fn = os.path.join(os.path.dirname(__file__), "..", "eric7_ide.py") + fn = "" # script name of the eric IDE is set in debug client tracePython = True # override flag because it must be true self.debugViewer.initCallStackViewer(debugProject) @@ -2810,7 +2810,7 @@ if not doNotStart: if forProject and self.project.getProjectType() in ["E7Plugin"]: argv = '--plugin="{0}" {1}'.format(fn, argv) - fn = os.path.join(os.path.dirname(__file__), "..", "eric7_ide.py") + fn = "" # script name of the eric IDE is set in debug client self.debugViewer.initCallStackViewer(forProject)