Plugins/CheckerPlugins/Pep8/Pep8StatisticsDialog.py

changeset 853
ec7dd115e26b
parent 847
cc18fbcde9fc
child 857
613ded9c3b69
--- a/Plugins/CheckerPlugins/Pep8/Pep8StatisticsDialog.py	Mon Jan 17 11:51:33 2011 +0100
+++ b/Plugins/CheckerPlugins/Pep8/Pep8StatisticsDialog.py	Mon Jan 17 20:15:54 2011 +0100
@@ -34,8 +34,10 @@
         stats = statistics.copy()
         filesCount = stats["_FilesCount"]
         filesIssues = stats["_FilesIssues"]
+        fixesCount = stats["_IssuesFixed"]
         del stats["_FilesCount"]
         del stats["_FilesIssues"]
+        del stats["_IssuesFixed"]
         
         totalIssues = 0
         
@@ -52,6 +54,8 @@
         
         self.total.setText(
             self.trUtf8("%n issue(s) found", "", totalIssues))
+        self.total.setText(
+            self.trUtf8("%n issue(s) fixed", "", fixesCount))
         self.filesChecked.setText(
             self.trUtf8("%n file(s) checked", "", filesCount))
         self.filesIssues.setText(

eric ide

mercurial