Skip to content

Commit

Permalink
fix #99
Browse files Browse the repository at this point in the history
  • Loading branch information
rizsotto committed Apr 12, 2018
1 parent 8fb0d36 commit 2f484d5
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -33,3 +33,5 @@ v2.0.9 2017-09-03 -- Bug fix
v2.0.10 2017-10-03 -- Add typing as dependency

v2.0.11 2018-01-07 -- Fix decoding error at report generation

v2.0.12 2018-04-13 -- Fix log message bug
2 changes: 1 addition & 1 deletion libscanbuild/analyze.py
Original file line number Diff line number Diff line change
Expand Up @@ -408,7 +408,7 @@ def target():
message = 'failed to execute "{0}"'.format(opts['clang'])
return {'error_output': message, 'exit_code': 127}
except subprocess.CalledProcessError as ex:
logging.warning('analysis failed: %s', exc_info=True)
logging.warning('analysis failed', exc_info=True)
result = {'error_output': ex.output, 'exit_code': ex.returncode}
if opts.get('output_failures', False):
opts.update(result)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setup(
name='scan-build',
version='2.0.11',
version='2.0.12',
author='László Nagy',
author_email='[email protected]',
keywords=['Clang', 'scan-build', 'static analyzer'],
Expand Down

0 comments on commit 2f484d5

Please sign in to comment.