From e09f478aa8ff3966e1d962232d82680d62e09c8a Mon Sep 17 00:00:00 2001 From: LukeCz Date: Wed, 28 Sep 2016 19:13:37 -0500 Subject: [PATCH] Cpplint is unnecessarily polluting stderr --- cpplint/cpplint.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cpplint/cpplint.py b/cpplint/cpplint.py index 2b6c5c8..845e960 100755 --- a/cpplint/cpplint.py +++ b/cpplint/cpplint.py @@ -909,7 +909,7 @@ class _CppLintState(object): for category, count in self.errors_by_category.iteritems(): sys.stderr.write('Category \'%s\' errors found: %d\n' % (category, count)) - sys.stderr.write('Total errors found: %d\n' % self.error_count) + sys.stdout.write('Total errors found: %d\n' % self.error_count) _cpplint_state = _CppLintState() @@ -6004,7 +6004,7 @@ def ProcessFile(filename, vlevel, extra_check_functions=[]): Error(filename, linenum, 'whitespace/newline', 1, 'Unexpected \\r (^M) found; better to use only \\n') - sys.stderr.write('Done processing %s\n' % filename) + sys.stdout.write('Done processing %s\n' % filename) _RestoreFilters()