From: Nico Weber Date: Thu, 17 Apr 2014 17:51:57 +0000 (+0000) Subject: clang-format.py: Don't omit the first two words from error messages. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b2f2d3e9295711a9bceb8be448584510e87225c7;p=clang clang-format.py: Don't omit the first two words from error messages. This reverts r172072. clang-format used to use DiagnosticEngine to output errors: http://llvm.org/viewvc/llvm-project?view=revision&revision=172071. Now it doesn't, so this code is obsolete. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@206479 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/tools/clang-format/clang-format.py b/tools/clang-format/clang-format.py index 0c0da6e4dc..46af0682aa 100644 --- a/tools/clang-format/clang-format.py +++ b/tools/clang-format/clang-format.py @@ -59,12 +59,7 @@ def main(): # If successful, replace buffer contents. if stderr: - message = stderr.splitlines()[0] - parts = message.split(' ', 2) - if len(parts) > 2: - message = parts[2] - print 'Formatting failed: %s (total %d warnings, %d errors)' % ( - message, stderr.count('warning:'), stderr.count('error:')) + print stderr if not stdout: print ('No output from clang-format (crashed?).\n' +