--- a/Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleFixer.py Wed Jan 15 22:55:52 2014 +0100 +++ b/Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleFixer.py Fri Jan 17 23:38:29 2014 +0100 @@ -18,7 +18,12 @@ import sys import tokenize -import pep8 +# CodeStyleCheckerDialog tries to import FixableCodeStyleIssues what fail under +# Python3. So ignore it. +try: + import pep8 +except ImportError: + pass # Tell 'lupdate' which strings to keep for translation. QT_TRANSLATE_NOOP = lambda mod, txt: txt