This is an automated email from the git hooks/post-receive script.
mothacehe pushed a commit to branch master
in repository guix-cuirass.
The following commit(s) were added to refs/heads/master by this push:
new d332955 http: Fix string concatenation.
d332955 is described below
commit d3329551fe2b90a454617da0f241e51fb4a72c58
Author: Mathieu Othacehe <[email protected]>
AuthorDate: Sun Aug 2 19:17:14 2020 +0200
http: Fix string concatenation.
This is a follow-up of 614ea0576743e7ab83a7b4f82b48f272a67ebbf7.
* src/cuirass/http.scm (url-handler): Fix string concatenation.
---
src/cuirass/http.scm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/cuirass/http.scm b/src/cuirass/http.scm
index bcd6217..39d8711 100644
--- a/src/cuirass/http.scm
+++ b/src/cuirass/http.scm
@@ -367,7 +367,7 @@ Hydra format."
(products (and build (db-get-build-products id))))
(if build
(respond-html
- (html-page (string-append "Build " id)
+ (html-page (string-append "Build " (number->string id))
(build-details build products)
`(((#:name . ,(assq-ref build #:specification))
(#:link . ,(string-append "/jobset/" (assq-ref build
#:specification)))))))