Skip to content

Commit 25d25c6

Browse files
committed
Review fixes
1 parent f0bc6eb commit 25d25c6

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

analyzer/codechecker_analyzer/analyzer.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -256,10 +256,10 @@ def perform_analysis(args, skip_handlers, rs_handler: ReviewStatusHandler,
256256
metadata_info['analyzer_statistics']['version'] = version
257257

258258
metadata_tool['analyzers'][analyzer] = metadata_info
259-
LOG.info("Enabled checker list can be found in " +
259+
LOG.info("Enabled checker list can be found in %s",
260260
os.path.join(args.output_path, "metadata.json"))
261261
LOG.debug("Enabled checkers:\n%s", '\n'.join(
262-
k + ': ' + ', '.join(v) for k, v in enabled_checkers.items()))
262+
k + ': ' + ',\n '.join(v) for k, v in enabled_checkers.items()))
263263

264264
if 'makefile' in args and args.makefile:
265265
statistics_data = __get_statistics_data(args)

analyzer/tests/functional/analyze_and_parse/test_analyze_and_parse.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ def check_one_file(self, path, mode):
220220
"[] - Skipping input file",
221221
# Enabled checkers are listed in the beginning of
222222
# analysis.
223-
"[] - Enabled checkers:",
223+
"[] - Enabled checker",
224224
"clang-tidy:",
225225
"clangsa:",
226226
"cppcheck:",

0 commit comments

Comments
 (0)