Fixed an issue reporting the pylint versions installed. release-5.4.1

Wed, 30 Apr 2014 19:58:17 +0200

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Wed, 30 Apr 2014 19:58:17 +0200
changeset 35
c3ca6d580760
parent 34
6af72432d072
child 36
3d5dc11c8d8c
child 38
bf234b8941d9

Fixed an issue reporting the pylint versions installed.

ChangeLog file | annotate | diff | comparison | revisions
PluginPyLint.py file | annotate | diff | comparison | revisions
PluginPyLint.zip file | annotate | diff | comparison | revisions
--- a/ChangeLog	Thu Apr 24 19:10:07 2014 +0200
+++ b/ChangeLog	Wed Apr 30 19:58:17 2014 +0200
@@ -1,5 +1,8 @@
 ChangeLog
 ---------
+Version 5.4.1:
+- bug fixes
+
 Version 5.4.0:
 - bug fixes
 - Python 2 compatibility flag added
--- a/PluginPyLint.py	Thu Apr 24 19:10:07 2014 +0200
+++ b/PluginPyLint.py	Wed Apr 30 19:58:17 2014 +0200
@@ -42,7 +42,7 @@
 author = "Detlev Offenbach <detlev@die-offenbachs.de>"
 autoactivate = True
 deactivateable = True
-version = "5.4.0"
+version = "5.4.1"
 className = "PyLintPlugin"
 packageName = "PyLint"
 shortDescription = "Show the PyLint dialogs."
@@ -79,9 +79,10 @@
     }
     if _checkProgram():
         for exePath in (exePy2[0], exePy3[0]):
-            data["exe"] = exePath
-            data["versionStartsWith"] = "pylint"
-            dataList.append(data.copy())
+            if exePath:
+                data["exe"] = exePath
+                data["versionStartsWith"] = "pylint"
+                dataList.append(data.copy())
     else:
         dataList.append(data)
     return dataList
Binary file PluginPyLint.zip has changed

eric ide

mercurial