diff -r 801289962f4e -r 57179e4cdadd Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleChecker.py --- a/Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleChecker.py Mon Oct 14 20:08:19 2013 +0200 +++ b/Plugins/CheckerPlugins/CodeStyleChecker/CodeStyleChecker.py Tue Oct 15 18:29:32 2013 +0200 @@ -51,8 +51,10 @@ interpreter = Preferences.getDebugger("PythonInterpreter") if interpreter == "" or not Utilities.isExecutable(interpreter): - self.errors.append((filename, 1, 1, - QCoreApplication.translate("CodeStyleCheckerPy2", + self.errors.append( + (filename, 1, 1, + QCoreApplication.translate( + "CodeStyleCheckerPy2", "Python2 interpreter not configured."))) return @@ -123,6 +125,8 @@ self.counters[code] = int(countStr) index += 1 else: - self.errors.append((filename, 1, 1, - QCoreApplication.translate("CodeStyleCheckerPy2", + self.errors.append( + (filename, 1, 1, + QCoreApplication.translate( + "CodeStyleCheckerPy2", "Python2 interpreter did not finish within 15s.")))