http: Fix string concatenation.

This is a follow-up of 614ea05767.

* src/cuirass/http.scm (url-handler): Fix string concatenation.
This commit is contained in:
Mathieu Othacehe 2020-08-02 19:17:14 +02:00
parent 614ea05767
commit d3329551fe
No known key found for this signature in database
GPG Key ID: 8354763531769CA6
1 changed files with 1 additions and 1 deletions

View File

@ -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)))))))