Fixed an issue causing the executable search to fail on macOSX, if the Python 3 interpreter is installed as 'python'. release-6.1.6

Fri, 31 Mar 2017 18:07:33 +0200

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Fri, 31 Mar 2017 18:07:33 +0200
changeset 62
3d7ca91127c5
parent 61
01b72bc93eed
child 63
919dd526655a

Fixed an issue causing the executable search to fail on macOSX, if the Python 3 interpreter is installed as 'python'.

ChangeLog file | annotate | diff | comparison | revisions
PluginPyLint.py file | annotate | diff | comparison | revisions
PluginPyLint.zip file | annotate | diff | comparison | revisions
--- a/ChangeLog	Mon Mar 27 19:46:31 2017 +0200
+++ b/ChangeLog	Fri Mar 31 18:07:33 2017 +0200
@@ -1,5 +1,8 @@
 ChangeLog
 ---------
+Version 6.1.6:
+- bug fixes
+
 Version 6.1.5:
 - bug fixes
 
--- a/PluginPyLint.py	Mon Mar 27 19:46:31 2017 +0200
+++ b/PluginPyLint.py	Fri Mar 31 18:07:33 2017 +0200
@@ -35,7 +35,7 @@
 author = "Detlev Offenbach <detlev@die-offenbachs.de>"
 autoactivate = True
 deactivateable = True
-version = "6.1.5"
+version = "6.1.6"
 className = "PyLintPlugin"
 packageName = "PyLint"
 shortDescription = "Show the PyLint dialogs."
@@ -212,7 +212,7 @@
         # step 2: determine the Python variant
         if Utilities.isMacPlatform():
             checkStrings = ["Python.framework/Versions/3".lower(),
-                            "python3"]
+                            "python3", "python"]
         else:
             checkStrings = ["python3"]
         
Binary file PluginPyLint.zip has changed

eric ide

mercurial