eric6/VirtualEnv/VirtualenvInterpreterSelectionDialog.py

changeset 7635
0cdead130a81
parent 7360
9190402e4505
child 7671
5c6b164618c6
diff -r 8c3d033e5044 -r 0cdead130a81 eric6/VirtualEnv/VirtualenvInterpreterSelectionDialog.py
--- a/eric6/VirtualEnv/VirtualenvInterpreterSelectionDialog.py	Sat Jun 20 17:36:20 2020 +0200
+++ b/eric6/VirtualEnv/VirtualenvInterpreterSelectionDialog.py	Sun Jun 21 18:26:12 2020 +0200
@@ -73,11 +73,7 @@
         """
         Public method to get the entered data.
         
-        @return tuple containing the path of the selected Python interpreter
-            and the Python variant
-        @rtype tuple of (str, int)
+        @return path of the selected Python interpreter
+        @rtype str
         """
-        return (
-            self.pythonExecPicker.text(),
-            3 - self.variantComboBox.currentIndex(),
-        )
+        return self.pythonExecPicker.text(),

eric ide

mercurial