Fixed a little issue in the Python debugger interface class. eric7

Fri, 11 Oct 2024 11:49:35 +0200

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Fri, 11 Oct 2024 11:49:35 +0200
branch
eric7
changeset 10966
2ae7fc2a852b
parent 10965
f80b241605c9
child 10967
454391fb0bdf

Fixed a little issue in the Python debugger interface class.

src/eric7/Debugger/DebuggerInterfacePython.py file | annotate | diff | comparison | revisions
--- a/src/eric7/Debugger/DebuggerInterfacePython.py	Thu Oct 10 19:59:49 2024 +0200
+++ b/src/eric7/Debugger/DebuggerInterfacePython.py	Fri Oct 11 11:49:35 2024 +0200
@@ -623,6 +623,9 @@
                     self.translate = self.__remoteTranslation
                 else:
                     self.translate = self.__identityTranslation
+
+                self.__startedVenv = "" if process is None else venvName
+
                 return process, self.__isNetworked, ""
             else:
                 # remote shell command is missing

eric ide

mercurial