Skip to content

Commit

Permalink
Add newline in report module
Browse files Browse the repository at this point in the history
Signed-off-by: romanodanilo <[email protected]>
  • Loading branch information
romanodanilo committed Jul 22, 2024
1 parent 5cdaf36 commit 8e6142e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions report_modules/report_module_text/report_format_text.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ def run_text_report(input_filename: str, report_filename: str):

# Checker bundles
for checker_bundle in result.get_checker_bundle_results():
report_file.write(f" CheckerBundle: {checker_bundle.name}\n")
report_file.write(f"\n CheckerBundle: {checker_bundle.name}\n")
report_file.write(f" Build date: {checker_bundle.build_date}\n")
report_file.write(f" Build version: {checker_bundle.version}\n")
report_file.write(f" Description: {checker_bundle.description}\n")
Expand All @@ -67,7 +67,7 @@ def run_text_report(input_filename: str, report_filename: str):
report_file.write(" " + "=" * 20 + "\n")

for checker in checker_bundle.checkers:
report_file.write(f" Checker: {checker.checker_id}\n")
report_file.write(f"\n Checker: {checker.checker_id}\n")
report_file.write(f" Description: {checker.description}\n")
if checker.status is None:
status_string = ""
Expand Down

0 comments on commit 8e6142e

Please sign in to comment.