From 1896d5bb43afc6358e20a5c40c8ecd35e8db6919 Mon Sep 17 00:00:00 2001 From: Luke Kenneth Casson Leighton Date: Wed, 6 Dec 2023 18:28:07 +0000 Subject: [PATCH] use space instead of tab so that   works --- src/budget_sync/main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/budget_sync/main.py b/src/budget_sync/main.py index 3fd13f3..d01a09c 100644 --- a/src/budget_sync/main.py +++ b/src/budget_sync/main.py @@ -148,7 +148,7 @@ def summarize_milestones(f, budget_graph, detail=False): for milestone, payments in budget_graph.milestone_payments.items(): summary = PaymentSummary(payments) print(f"{milestone.identifier}
", file=f) - print(f"\t{summary.total} submitted: " + print(f" {summary.total} submitted: " f"{summary.total_submitted} paid: {summary.total_paid}
", file=f) not_submitted = summary.get_not_submitted() @@ -157,7 +157,7 @@ def summarize_milestones(f, budget_graph, detail=False): # and one to display people for person in budget_graph.milestone_people[milestone]: - print(spc("\t%-30s - %s
" % (person.identifier, + print(spc(" %-30s - %s
" % (person.identifier, person.full_name)), file=f) print("
", file=f) -- 2.30.2