PyLint/PyLintConfigDialog.py

changeset 60
971dd1b69f5b
parent 59
4915a31923dc
child 68
35b46e640d6d
--- a/PyLint/PyLintConfigDialog.py	Sat Dec 31 13:50:22 2016 +0100
+++ b/PyLint/PyLintConfigDialog.py	Mon Mar 27 19:46:20 2017 +0200
@@ -17,7 +17,7 @@
 import copy
 
 from PyQt5.QtCore import pyqtSlot, QProcess
-from PyQt5.QtWidgets import  QDialog
+from PyQt5.QtWidgets import QDialog
 
 from E5Gui.E5Application import e5App
 from E5Gui import E5FileDialog, E5MessageBox
@@ -249,7 +249,7 @@
             self.tr("Select configuration file"),
             startWith,
             self.tr("Configuration Files (*.cfg *.cnf *.rc);;"
-                        "All Files (*)"))
+                    "All Files (*)"))
         if config:
             self.configfileEdit.setText(Utilities.toNativeSeparators(config))
     
@@ -273,7 +273,7 @@
     
     def accept(self):
         """
-        Protected slot called by the Ok button.
+        Public slot called by the Ok button.
         
         It saves the values in the parameters dictionary.
         """
@@ -320,7 +320,7 @@
     @pyqtSlot()
     def on_configButton_clicked(self):
         """
-        Public slot to handle the generation of a sample configuration.
+        Private slot to handle the generation of a sample configuration.
         """
         self.buf = ""
         self.pylintProc = QProcess()

eric ide

mercurial