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()) |
101 [""] + sorted(self.__virtualenvManager.getVirtualenvNames(noServer=True)) |
102 ) |
102 ) |
103 |
103 |
104 # set initial value |
104 # set initial value |
105 venvName = Preferences.getDebugger("Python3VirtualEnv") |
105 venvName = Preferences.getDebugger("Python3VirtualEnv") |
106 if venvName: |
106 if venvName: |