status: Do not pass a non-literal format string to 'format'.
* guix/status.scm (print-build-event): Use 'display' instead of 'format' for hooks.
This commit is contained in:
parent
086813f63c
commit
5d4d8d83e4
@ -503,7 +503,7 @@ substitutes being downloaded."
|
||||
(let ((hook-type (assq-ref properties 'hook)))
|
||||
(or (and=> (hook-message hook-type)
|
||||
(lambda (msg)
|
||||
(format port (info msg))))
|
||||
(display (info msg) port)))
|
||||
(format port (info (G_ "running profile hook of type '~a'..."))
|
||||
hook-type))))
|
||||
(_
|
||||
|
Loading…
Reference in New Issue
Block a user