diff options
author | Christopher Baines <mail@cbaines.net> | 2024-05-21 17:17:45 +0100 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2024-05-21 17:17:45 +0100 |
commit | c5308b86b23ff473aceaab6c88071a485f69862a (patch) | |
tree | 8d9b558c9bc86633626bd1df92cb7bee72d74866 | |
parent | 3fddc38050cf1aed44ff0083ff7711eaad616048 (diff) | |
download | qa-frontpage-c5308b86b23ff473aceaab6c88071a485f69862a.tar qa-frontpage-c5308b86b23ff473aceaab6c88071a485f69862a.tar.gz |
Fix syntax issue
-rw-r--r-- | guix-qa-frontpage/patchwork.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guix-qa-frontpage/patchwork.scm b/guix-qa-frontpage/patchwork.scm index cb91e30..91f5a23 100644 --- a/guix-qa-frontpage/patchwork.scm +++ b/guix-qa-frontpage/patchwork.scm @@ -320,6 +320,6 @@ series-by-issue-number mumi-data))))))) -(define (latest-patchwork-series-for-issue issue-number #:key patchwork) +(define* (latest-patchwork-series-for-issue issue-number #:key patchwork) (assq-ref (latest-patchwork-series-by-issue #:patchwork patchwork) issue-number)) |