PluginPyLint.py

changeset 87
e0f8b96f4195
parent 85
6124794c3ffe
child 89
8acd446fb6e6
diff -r 73a852622dc0 -r e0f8b96f4195 PluginPyLint.py
--- 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:

eric ide

mercurial