VirtualEnv/VirtualenvConfigurationDialog.py

branch
conda
changeset 6697
2f5c951bdf14
parent 6684
37e280d711af
child 6736
9a244f0d5dc0
equal deleted inserted replaced
6696:706185900558 6697:2f5c951bdf14
401 @return process arguments 401 @return process arguments
402 @rtype list of str 402 @rtype list of str
403 """ 403 """
404 args = [] 404 args = []
405 if self.condaButton.isChecked(): 405 if self.condaButton.isChecked():
406 args.extend(["create", "--json", "--yes"])
407 if bool(self.condaNameEdit.text()): 406 if bool(self.condaNameEdit.text()):
408 args.extend(["--name", self.condaNameEdit.text()]) 407 args.extend(["--name", self.condaNameEdit.text()])
409 if bool(self.condaTargetDirectoryPicker.text()): 408 if bool(self.condaTargetDirectoryPicker.text()):
410 args.extend(["--prefix", 409 args.extend(["--prefix",
411 self.condaTargetDirectoryPicker.text()]) 410 self.condaTargetDirectoryPicker.text()])

eric ide

mercurial