From 25e3327dbf113420b6783e6438ff49e78f30c03f Mon Sep 17 00:00:00 2001 From: Luke Kenneth Casson Leighton Date: Wed, 6 Dec 2023 18:26:32 +0000 Subject: [PATCH] add detail option and convert to and
--- src/budget_sync/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/budget_sync/main.py b/src/budget_sync/main.py index 7b8d6ce..3fd13f3 100644 --- a/src/budget_sync/main.py +++ b/src/budget_sync/main.py @@ -153,7 +153,7 @@ def summarize_milestones(f, budget_graph, detail=False): file=f) not_submitted = summary.get_not_submitted() if not_submitted: - print("not submitted
", not_submitted, file=f) + print("not submitted %s
" % not_submitted, file=f) # and one to display people for person in budget_graph.milestone_people[milestone]: -- 2.30.2