Skip to content
Snippets Groups Projects
Unverified Commit d3329551 authored by Mathieu Othacehe's avatar Mathieu Othacehe
Browse files

http: Fix string concatenation.

This is a follow-up of 614ea057.

* src/cuirass/http.scm (url-handler): Fix string concatenation.
parent 614ea057
No related branches found
No related tags found
No related merge requests found
......@@ -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)))))))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment