--- a/VirtualEnv/VirtualenvConfigurationDialog.py Sun Jan 27 19:52:37 2019 +0100 +++ b/VirtualEnv/VirtualenvConfigurationDialog.py Sun Jan 27 19:58:14 2019 +0100 @@ -502,8 +502,8 @@ open the target directory after creation, 'createLog' containing a flag to write a log file, 'createScript' containing a flag to write a script, 'targetDirectory' containing the target directory and - 'pythonExe' containing the Python interpreter to be used. The conda - specific keys are + 'pythonExe' containing the Python interpreter to be used. There are + no conda specific keys. @rtype dict """ # TODO: add the conda keys to the above description @@ -520,10 +520,10 @@ else: resultDict.update({ "envType": ("pyvenv" if self.pyvenvButton.isChecked() else - "virtualenv"), + "virtualenv"), "openTarget": self.openCheckBox.isChecked(), "createLog": self.logCheckBox.isChecked(), - "createScript":self.scriptCheckBox.isChecked(), + "createScript": self.scriptCheckBox.isChecked(), "targetDirectory": self.__generateTargetDir(), "pythonExe": Utilities.toNativeSeparators( self.pythonExecPicker.text()),