Plugins/CheckerPlugins/Pep8/Pep8Fixer.py

branch
Py2 comp.
changeset 2525
8b507a9a2d40
parent 2302
f29e9405c851
child 2911
ce77f0b1ee67
diff -r 139f182b72f6 -r 8b507a9a2d40 Plugins/CheckerPlugins/Pep8/Pep8Fixer.py
--- a/Plugins/CheckerPlugins/Pep8/Pep8Fixer.py	Sun Mar 24 13:52:12 2013 +0100
+++ b/Plugins/CheckerPlugins/Pep8/Pep8Fixer.py	Mon Mar 25 03:11:06 2013 +0100
@@ -7,6 +7,8 @@
 Module implementing a class to fix certain PEP 8 issues.
 """
 
+from __future__ import unicode_literals    # __IGNORE_WARNING__
+
 import os
 import re
 
@@ -38,7 +40,7 @@
             string (string)
         @param inPlace flag indicating to modify the file in place (boolean)
         """
-        super().__init__()
+        super(Pep8Fixer, self).__init__()
         
         self.__project = project
         self.__filename = filename

eric ide

mercurial