Mon, 12 Jun 2017 19:21:21 +0200
Extended the executable search algorithm to handle more Linux distribution variants.
ChangeLog | file | annotate | diff | comparison | revisions | |
PluginPyLint.py | file | annotate | diff | comparison | revisions | |
PluginPyLint.zip | file | annotate | diff | comparison | revisions |
--- a/ChangeLog Thu May 25 14:11:01 2017 +0200 +++ b/ChangeLog Mon Jun 12 19:21:21 2017 +0200 @@ -1,5 +1,9 @@ ChangeLog --------- +Version 6.1.8: +- extended the executable search algorithm to handle more Linux distribution + variants + Version 6.1.7: - fixed an issue preventing the activation of the plug-in with Python 3 >= 3.5.x
--- a/PluginPyLint.py Thu May 25 14:11:01 2017 +0200 +++ b/PluginPyLint.py Mon Jun 12 19:21:21 2017 +0200 @@ -35,7 +35,7 @@ author = "Detlev Offenbach <detlev@die-offenbachs.de>" autoactivate = True deactivateable = True -version = "6.1.7" +version = "6.1.8" className = "PyLintPlugin" packageName = "PyLint" shortDescription = "Show the PyLint dialogs." @@ -189,7 +189,8 @@ # Linux, Unix ... pylintScript = 'pylint' scriptSuffixes = ["", - "-python{0}".format(majorVersion)] + "-python{0}".format(majorVersion), + "{0}".format(majorVersion),] for minorVersion in minorVersions: scriptSuffixes.append( "-python{0}.{1}".format(majorVersion, minorVersion))