diff options
author | Christopher Baines <mail@cbaines.net> | 2022-11-18 10:50:21 +0000 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2022-11-18 10:50:21 +0000 |
commit | e216cc89d536faf09d77572dee4b7a6da2655ce5 (patch) | |
tree | 6b2159808b9978bba7ea1caed1429ec74f9d4f3b /guix-qa-frontpage/manage-patch-branches.scm | |
parent | 76daf7f6bcec8b8a83c66593c314201888452b8c (diff) | |
download | qa-frontpage-e216cc89d536faf09d77572dee4b7a6da2655ce5.tar qa-frontpage-e216cc89d536faf09d77572dee4b7a6da2655ce5.tar.gz |
Fix missing variable error
Diffstat (limited to 'guix-qa-frontpage/manage-patch-branches.scm')
-rw-r--r-- | guix-qa-frontpage/manage-patch-branches.scm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/guix-qa-frontpage/manage-patch-branches.scm b/guix-qa-frontpage/manage-patch-branches.scm index 7db0ef5..4d3bf74 100644 --- a/guix-qa-frontpage/manage-patch-branches.scm +++ b/guix-qa-frontpage/manage-patch-branches.scm @@ -368,11 +368,11 @@ (assoc-ref patchwork-series "id")))))) (take patchwork-series - 100))) + 100)) - (simple-format (current-error-port) - "finished processing patch branches (last issue: ~A)\n" - (car (last patchwork-series))) + (simple-format (current-error-port) + "finished processing patch branches (last issue: ~A)\n" + (car (last patchwork-series)))) (sleep 3600)) (setenv "GIT_SSH_COMMAND" |