src/eric7/Debugger/DebugServer.py

branch
eric7
changeset 9388
bfe7ea6599a3
parent 9278
36448ca469c2
child 9413
80c06d472826
equal deleted inserted replaced
9387:ce743c468d09 9388:bfe7ea6599a3
2177 """ 2177 """
2178 if self.debugging: 2178 if self.debugging:
2179 self.debuggerInterface.remoteNoDebugList( 2179 self.debuggerInterface.remoteNoDebugList(
2180 debuggerId, self.__multiprocessNoDebugList 2180 debuggerId, self.__multiprocessNoDebugList
2181 ) 2181 )
2182
2183 def getProjectEnvironmentString(self):
2184 """
2185 Public method to get the string for the project environment.
2186
2187 @return string for the project environment
2188 @rtype str
2189 """
2190 if ericApp().getObject("Project").isOpen():
2191 return self.tr("<project>")
2192 else:
2193 return ""

eric ide

mercurial