Plugins/CheckerPlugins/CodeStyleChecker/pep8.py

changeset 3670
f0cb7579c0b4
parent 3629
98e90f613114
child 4021
195a471c327b
diff -r ac84ac3c0f05 -r f0cb7579c0b4 Plugins/CheckerPlugins/CodeStyleChecker/pep8.py
--- a/Plugins/CheckerPlugins/CodeStyleChecker/pep8.py	Sat Jul 05 11:41:14 2014 +0200
+++ b/Plugins/CheckerPlugins/CodeStyleChecker/pep8.py	Sat Jul 05 12:13:23 2014 +0200
@@ -50,11 +50,11 @@
 
 #
 # This is a modified version to make the original pep8.py better suitable
-# for being called from within the eric5 IDE. The modifications are as
+# for being called from within the eric6 IDE. The modifications are as
 # follows:
 #
 # - made messages translatable via Qt
-# - added code for eric5 integration
+# - added code for eric6 integration
 #
 # Copyright (c) 2011 - 2014 Detlev Offenbach <detlev@die-offenbachs.de>
 #
@@ -1261,7 +1261,7 @@
         self.report_error = self.report.error
         self.report_error_args = self.report.error_args
         
-        # added for eric5 integration
+        # added for eric6 integration
         self.options = options
 
     def report_invalid_syntax(self):
@@ -1377,7 +1377,7 @@
         except (SyntaxError, TypeError):
             return self.report_invalid_syntax()
         for name, cls, __ in self._ast_checks:
-            # extended API for eric5 integration
+            # extended API for eric6 integration
             checker = cls(tree, self.filename, self.options)
             for args in checker.run():
                 lineno = args[0]

eric ide

mercurial