--- a/VirtualEnv/VirtualenvConfigurationDialog.py Tue Jan 29 20:22:17 2019 +0100 +++ b/VirtualEnv/VirtualenvConfigurationDialog.py Wed Jan 30 18:55:32 2019 +0100 @@ -488,12 +488,11 @@ 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. There are - no conda specific keys. + 'pythonExe' containing the Python interpreter to be used. The + conda specific key is 'command' giving the conda command to be + executed (always 'create'). @rtype dict """ - # TODO: add the conda keys to the above description - # TODO: change to returning a method specific dictionary args = self.__generateArguments() resultDict = { "arguments": args, @@ -502,6 +501,7 @@ if self.condaButton.isChecked(): resultDict.update({ "envType": "conda", + "command": "create", }) else: resultDict.update({