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