From: Luke Kenneth Casson Leighton Date: Thu, 21 Dec 2023 17:59:53 +0000 (+0000) Subject: bug 1171: make person a hyperlink in report.mdwn X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=ef9395e4a0ba5dfd4d6b93c2a6bd14e15eff4713;p=utils.git bug 1171: make person a hyperlink in report.mdwn --- 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