From ff0a18f83ba4b431a88d45f45ae8c3808272e63e Mon Sep 17 00:00:00 2001 From: RunasSudo Date: Thu, 4 Apr 2024 21:37:58 +1100 Subject: [PATCH] Fix formatting of links in Amount.format_accounting --- drcr/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drcr/models.py b/drcr/models.py index 0206d2e..1da7b7f 100644 --- a/drcr/models.py +++ b/drcr/models.py @@ -136,7 +136,7 @@ class Amount: if link is None: return Markup(text + space) else: - return Markup('{}{}'.format(link, text, space)) + return Markup('{}{}'.format(link, text, space)) def quantity_string(self): if self.commodity == '$':