eric6/Preferences/ConfigurationPages/DebuggerPython3Page.py

changeset 7635
0cdead130a81
parent 7533
88261c96484b
child 7780
41420f82c0ac
equal deleted inserted replaced
7634:8c3d033e5044 7635:0cdead130a81
89 Private method to populate and set the virtual environment combo box. 89 Private method to populate and set the virtual environment combo box.
90 """ 90 """
91 self.venvComboBox.clear() 91 self.venvComboBox.clear()
92 self.venvComboBox.addItems( 92 self.venvComboBox.addItems(
93 [""] + 93 [""] +
94 sorted(self.__virtualenvManager.getVirtualenvNamesForVariant(3)) 94 sorted(self.__virtualenvManager.getVirtualenvNames())
95 ) 95 )
96 96
97 # set initial value 97 # set initial value
98 venvName = Preferences.getDebugger("Python3VirtualEnv") 98 venvName = Preferences.getDebugger("Python3VirtualEnv")
99 if venvName: 99 if venvName:

eric ide

mercurial