Fixed a bug in the plug-in script. release-6.1.1

Sat, 31 Oct 2015 16:52:43 +0100

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Sat, 31 Oct 2015 16:52:43 +0100
changeset 48
69c4c0e04bf6
parent 47
0a7f95dd67d1
child 49
afbc6044e598

Fixed a bug in the plug-in script.

ChangeLog file | annotate | diff | comparison | revisions
PluginPyLint.py file | annotate | diff | comparison | revisions
PluginPyLint.zip file | annotate | diff | comparison | revisions
--- a/ChangeLog	Sat May 23 16:59:15 2015 +0200
+++ b/ChangeLog	Sat Oct 31 16:52:43 2015 +0100
@@ -1,5 +1,8 @@
 ChangeLog
 ---------
+Version 6.1.1:
+- bug fixes
+
 Version 6.1.0:
 - bug fixes
 - compatibility to newer pylint versions
--- a/PluginPyLint.py	Sat May 23 16:59:15 2015 +0200
+++ b/PluginPyLint.py	Sat Oct 31 16:52:43 2015 +0100
@@ -35,7 +35,7 @@
 author = "Detlev Offenbach <detlev@die-offenbachs.de>"
 autoactivate = True
 deactivateable = True
-version = "6.1.0"
+version = "6.1.1"
 className = "PyLintPlugin"
 packageName = "PyLint"
 shortDescription = "Show the PyLint dialogs."
@@ -150,7 +150,7 @@
                 exe = os.path.join(installpath, 'Scripts', 'pylint.exe')
                 if os.access(exe, os.X_OK):
                     exes.append(exe)
-            except (WindowsError, FileNotFoundError):   # __IGNORE_WARNING__
+            except (WindowsError, OSError):   # __IGNORE_WARNING__
                 pass
             return exes
         
Binary file PluginPyLint.zip has changed

eric ide

mercurial