src/eric7/Preferences/ConfigurationPages/DebuggerPython3Page.py

branch
eric7
changeset 11230
8a15b05eeee3
parent 11148
15e30f0c76a8
equal deleted inserted replaced
11229:16a129d168f9 11230:8a15b05eeee3
96 """ 96 """
97 Private method to populate and set the virtual environment combo box. 97 Private method to populate and set the virtual environment combo box.
98 """ 98 """
99 self.venvComboBox.clear() 99 self.venvComboBox.clear()
100 self.venvComboBox.addItems( 100 self.venvComboBox.addItems(
101 [""] + sorted(self.__virtualenvManager.getVirtualenvNames(noServer=True)) 101 [""]
102 + sorted(
103 self.__virtualenvManager.getVirtualenvNames(
104 filterList=("-eric_server",)
105 )
106 )
102 ) 107 )
103 108
104 # set initial value 109 # set initial value
105 venvName = Preferences.getDebugger("Python3VirtualEnv") 110 venvName = Preferences.getDebugger("Python3VirtualEnv")
106 if venvName: 111 if venvName:

eric ide

mercurial