498 "--prompt={0}".format( |
498 "--prompt={0}".format( |
499 self.promptPrefixEdit.text().replace(" ", "_") |
499 self.promptPrefixEdit.text().replace(" ", "_") |
500 ) |
500 ) |
501 ) |
501 ) |
502 if self.pythonExecPicker.text(): |
502 if self.pythonExecPicker.text(): |
503 args.append( |
503 args.append("--python={0}".format(self.pythonExecPicker.text())) |
504 "--python={0}".format( |
|
505 self.pythonExecPicker.text() |
|
506 ) |
|
507 ) |
|
508 elif self.versionComboBox.currentText(): |
504 elif self.versionComboBox.currentText(): |
509 args.append( |
505 args.append( |
510 "--python=python{0}".format(self.versionComboBox.currentText()) |
506 "--python=python{0}".format(self.versionComboBox.currentText()) |
511 ) |
507 ) |
512 if self.verbositySpinBox.value() == 1: |
508 if self.verbositySpinBox.value() == 1: |