Sat, 10 Sep 2016 12:45:08 +0200
Fixed an issue caused by a changed pylint command line parameter.
ChangeLog | file | annotate | diff | comparison | revisions | |
PluginPyLint.py | file | annotate | diff | comparison | revisions | |
PyLint/PyLintConfigDialog.py | file | annotate | diff | comparison | revisions |
--- a/ChangeLog Fri Jan 01 12:18:52 2016 +0100 +++ b/ChangeLog Sat Sep 10 12:45:08 2016 +0200 @@ -1,5 +1,11 @@ ChangeLog --------- +Version 6.1.4: +- bug fixes + +Version 6.1.3: +- bug fixes + Version 6.1.2: - corrected Russian translations
--- a/PluginPyLint.py Fri Jan 01 12:18:52 2016 +0100 +++ b/PluginPyLint.py Sat Sep 10 12:45:08 2016 +0200 @@ -35,7 +35,7 @@ author = "Detlev Offenbach <detlev@die-offenbachs.de>" autoactivate = True deactivateable = True -version = "6.1.3" +version = "6.1.4" className = "PyLintPlugin" packageName = "PyLint" shortDescription = "Show the PyLint dialogs."
--- a/PyLint/PyLintConfigDialog.py Fri Jan 01 12:18:52 2016 +0100 +++ b/PyLint/PyLintConfigDialog.py Sat Sep 10 12:45:08 2016 +0200 @@ -165,7 +165,7 @@ args.append('--output-format=html') elif self.parameters['dialogReport']: args.append('--output-format=parseable') - args.append('--report=n') + args.append('--reports=n') else: args.append('--output-format=text') if self.parameters['reportFile'] != self.defaults['reportFile']: