From 98c80c9793d184de2887a4b6887c772518e61c70 Mon Sep 17 00:00:00 2001 From: "Dawn M. Foster" Date: Tue, 12 Sep 2023 17:48:29 +0200 Subject: [PATCH] minor tweaks to output --- health_by_repo.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/health_by_repo.py b/health_by_repo.py index 9e568b1..b3e4067 100644 --- a/health_by_repo.py +++ b/health_by_repo.py @@ -117,7 +117,7 @@ # In general, this model isn't intended to be used with forked # or archived repos. is_forked, is_archived = fork_archive(repo_name, org_name, engine) - print('\n', org_name, repo_name, '- Forked:', str(is_forked), 'Archived:', str(is_archived)) + print(org_name, repo_name, '- Forked:', str(is_forked), 'Archived:', str(is_archived)) # This section collects all of the data using the functions for each graph # found in common_functions.py and creates the graphs for each metric @@ -130,3 +130,5 @@ response_time_graph(repo_id, repo_name, org_name, start_date, end_date, engine, bus_days, years) + # Print a separator between repos + print('-------------')