Fri, 31 Mar 2017 18:07:33 +0200
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"]