Wed, 07 Oct 2020 19:32:58 +0200
Changed calls to exec_() into exec() (remainder of Python2 elimination).
ChangeLog | file | annotate | diff | comparison | revisions | |
PluginPyLint.py | file | annotate | diff | comparison | revisions | |
PluginPyLint.zip | file | annotate | diff | comparison | revisions |
--- a/ChangeLog Mon Jun 22 19:49:43 2020 +0200 +++ b/ChangeLog Wed Oct 07 19:32:58 2020 +0200 @@ -1,5 +1,8 @@ ChangeLog --------- +Version 7.1.0: +- changed exec_() into exec() + Version 7.0.0 - removed support for Python2
--- a/PluginPyLint.py Mon Jun 22 19:49:43 2020 +0200 +++ b/PluginPyLint.py Wed Oct 07 19:32:58 2020 +0200 @@ -29,7 +29,7 @@ author = "Detlev Offenbach <detlev@die-offenbachs.de>" autoactivate = True deactivateable = True -version = "7.0.0" +version = "7.1.0" className = "PyLintPlugin" packageName = "PyLint" shortDescription = "Show the PyLint dialogs." @@ -537,7 +537,7 @@ from PyLint.PyLintConfigDialog import PyLintConfigDialog dlg = PyLintConfigDialog(project.getProjectPath(), exe, parms, version) - if dlg.exec_() == QDialog.Accepted: + if dlg.exec() == QDialog.Accepted: args, parms = dlg.generateParameters() self.__editorParms = copy.deepcopy(parms) if not forEditor: