src/eric7/Project/Project.py

branch
server
changeset 10770
8b4ff92221da
parent 10769
33edb81a63b4
child 10773
b2e75ba58a30
equal deleted inserted replaced
10769:33edb81a63b4 10770:8b4ff92221da
4612 Public method to get the path name of the embedded virtual environment. 4612 Public method to get the path name of the embedded virtual environment.
4613 4613
4614 @return path name of the embedded virtual environment 4614 @return path name of the embedded virtual environment
4615 @rtype str 4615 @rtype str
4616 """ 4616 """
4617 if ( 4617 if self.__pdata["EMBEDDED_VENV"] and not FileSystemUtilities.isRemoteFileName(
4618 self.__pdata["EMBEDDED_VENV"] 4618 self.ppath
4619 and not FileSystemUtilities.isRemoteFileName(self.ppath)
4620 ): 4619 ):
4621 return self.__findEmbeddedEnvironment() 4620 return self.__findEmbeddedEnvironment()
4622 else: 4621 else:
4623 return "" 4622 return ""
4624 4623

eric ide

mercurial