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: |