Skip to content

Commit

Permalink
Fix spacing in merge_analyzer.py output
Browse files Browse the repository at this point in the history
  • Loading branch information
mernst committed Oct 30, 2023
1 parent c104908 commit eef5c90
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/python/merge_analyzer.py
Original file line number Diff line number Diff line change
Expand Up @@ -269,17 +269,17 @@ def build_merge_analyzer_arguments(args: argparse.Namespace, repo_slug: str):
n_new_analyzed,
)
print(
"merge_analyzer: Number of merge tool outputs that have been newly \
compared and are to test:",
"merge_analyzer: Number of merge tool outputs that have been newly compared",
"and are to test:",
n_new_to_test,
)
print(
"merge_analyzer: Total number of merge tool outputs that have been compared:",
n_total_analyzed,
)
print(
"merge_analyzer: Total number of merge tool outputs that have been compared \
and are to test:",
"merge_analyzer: Total number of merge tool outputs that have been compared",
"and are to test:",
n_total_to_test,
)
print("merge_analyzer: Finished Constructing Output")
Expand Down

0 comments on commit eef5c90

Please sign in to comment.