diff options
author | Christopher Baines <mail@cbaines.net> | 2024-10-06 11:55:52 +0100 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2024-10-06 11:55:52 +0100 |
commit | d3e526bf8a8b2723fdfd26d14c9959a060ba523b (patch) | |
tree | 1d6132eef1f90c276f19eeff45e74bf8fa4cad08 /guix-qa-frontpage/view | |
parent | 5dd826adad7eede856b1f3c1bc111de5ffbd29d0 (diff) | |
download | qa-frontpage-d3e526bf8a8b2723fdfd26d14c9959a060ba523b.tar qa-frontpage-d3e526bf8a8b2723fdfd26d14c9959a060ba523b.tar.gz |
Fix missing unquote
Diffstat (limited to 'guix-qa-frontpage/view')
-rw-r--r-- | guix-qa-frontpage/view/issue.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guix-qa-frontpage/view/issue.scm b/guix-qa-frontpage/view/issue.scm index 9911e79..80f6b1d 100644 --- a/guix-qa-frontpage/view/issue.scm +++ b/guix-qa-frontpage/view/issue.scm @@ -475,5 +475,5 @@ Guix QA review form submission:" (uri-encode email-text)))) (b "Open mail client to send review email")) (p "If the above link doesn't work for you, the contents of the suggested email is given below, and can be sent " - (strong "to control@debbugs.gnu.org and " issue-number "@debbugs.gnu.org")) + (strong "to control@debbugs.gnu.org and " ,issue-number "@debbugs.gnu.org")) (pre ,email-text))))) |