Skip to content

Commit

Permalink
Cpplint is unnecessarily polluting stderr
Browse files Browse the repository at this point in the history
  • Loading branch information
LukeCz committed Sep 29, 2016
1 parent 1342002 commit e09f478
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cpplint/cpplint.py
Original file line number Diff line number Diff line change
Expand Up @@ -909,7 +909,7 @@ def PrintErrorCounts(self):
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()

Expand Down Expand Up @@ -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()


Expand Down

0 comments on commit e09f478

Please sign in to comment.