VirtualEnv/VirtualenvConfigurationDialog.py

branch
conda
changeset 6678
5f1de9e59227
parent 6677
6299d69a218a
child 6681
9c1513b488ef
--- 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()),

eric ide

mercurial