From ef9395e4a0ba5dfd4d6b93c2a6bd14e15eff4713 Mon Sep 17 00:00:00 2001 From: Luke Kenneth Casson Leighton Date: Thu, 21 Dec 2023 17:59:53 +0000 Subject: [PATCH] bug 1171: make person a hyperlink in report.mdwn --- src/budget_sync/main.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/budget_sync/main.py b/src/budget_sync/main.py index 7ddcebf..2a388c8 100644 --- a/src/budget_sync/main.py +++ b/src/budget_sync/main.py @@ -161,9 +161,9 @@ def summarize_milestones(f, budget_graph, detail=False): # and one to display people for person in budget_graph.milestone_people[milestone]: - print(spc(" %-30s - %s" % (person.identifier, - person.full_name)), - file=f) + ident = "%s" + ident %= (person.identifier, person.identifier) + print(spc(" %-30s - %s" % (ident, person.full_name)), file=f) print("", file=f) # now do trees -- 2.30.2