fix format string
This commit is contained in:
parent
caef6c8238
commit
562adb1b90
1 changed files with 1 additions and 1 deletions
|
@ -253,7 +253,7 @@ def _add_clang_tidy(report: BuildReport, results_dir: str, results_url: str, wor
|
||||||
if severity == 'error':
|
if severity == 'error':
|
||||||
errors_count += 1
|
errors_count += 1
|
||||||
if ignore.match_file(file_name):
|
if ignore.match_file(file_name):
|
||||||
print('{} is ignored by pattern and no comment will be added')
|
print('{} is ignored by pattern and no comment will be added'.format(file_name))
|
||||||
else:
|
else:
|
||||||
inline_comments += 1
|
inline_comments += 1
|
||||||
report.addLint({
|
report.addLint({
|
||||||
|
|
Loading…
Reference in a new issue