Plugins/CheckerPlugins/Pep8/CodeStyleCheckerDialog.py

changeset 2978
9d63132a23e0
parent 2973
284c7f4bc875
child 2979
e2eee1b09664
diff -r 393f5faaa017 -r 9d63132a23e0 Plugins/CheckerPlugins/Pep8/CodeStyleCheckerDialog.py
--- a/Plugins/CheckerPlugins/Pep8/CodeStyleCheckerDialog.py	Tue Oct 01 18:22:33 2013 +0200
+++ b/Plugins/CheckerPlugins/Pep8/CodeStyleCheckerDialog.py	Tue Oct 01 18:31:05 2013 +0200
@@ -145,7 +145,7 @@
             automatically (boolean)
         @return reference to the created item (QTreeWidgetItem)
         """
-        from .Pep8Fixer import Pep8FixableIssues
+        from .CodeStyleFixer import FixableCodeStyleIssues
         
         if self.__lastFileItem is None:
             # It's a new file
@@ -168,7 +168,7 @@
             itm.setIcon(1, UI.PixmapCache.getIcon("syntaxError.png"))
         if fixed:
             itm.setIcon(0, UI.PixmapCache.getIcon("issueFixed.png"))
-        elif code in Pep8FixableIssues and not autofixing:
+        elif code in FixableCodeStyleIssues and not autofixing:
             itm.setIcon(0, UI.PixmapCache.getIcon("issueFixable.png"))
             fixable = True
         
@@ -213,7 +213,7 @@
         
         @param statistics dictionary of statistical data with
             message code as key and message count as value
-        @param fixer reference to the PEP 8 fixer (Pep8Fixer)
+        @param fixer reference to the PEP 8 fixer (CodeStyleFixer)
         """
         self.__statistics["_FilesCount"] += 1
         stats = {v: k for v, k in statistics.items() if v[0].isupper()}
@@ -231,7 +231,7 @@
         """
         Private method to update the collected fixer related statistics.
         
-        @param fixer reference to the PEP 8 fixer (Pep8Fixer)
+        @param fixer reference to the PEP 8 fixer (CodeStyleFixer)
         """
         self.__statistics["_IssuesFixed"] += fixer.fixed
     
@@ -405,8 +405,8 @@
                     flags = Utilities.extractFlags(source)
                     ext = os.path.splitext(file)[1]
                     if fixIssues:
-                        from .Pep8Fixer import Pep8Fixer
-                        fixer = Pep8Fixer(self.__project, file, source,
+                        from .CodeStyleFixer import CodeStyleFixer
+                        fixer = CodeStyleFixer(self.__project, file, source,
                                           fixCodes, noFixCodes, maxLineLength,
                                           True)  # always fix in place
                     else:
@@ -803,7 +803,7 @@
         """
         Private slot to fix selected issues.
         """
-        from .Pep8Fixer import Pep8Fixer
+        from .CodeStyleFixer import CodeStyleFixer
         
         # build a dictionary of issues to fix
         fixableItems = self.__getSelectedFixableItems()
@@ -843,7 +843,7 @@
                     continue
                 
                 deferredFixes = {}
-                fixer = Pep8Fixer(self.__project, file, source,
+                fixer = CodeStyleFixer(self.__project, file, source,
                                   fixCodes, noFixCodes, maxLineLength,
                                   True)  # always fix in place
                 errors = fixesDict[file]

eric ide

mercurial