diff options
author | Ludovic Courtès <ludo@gnu.org> | 2018-06-15 09:02:01 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2018-06-15 10:04:59 +0200 |
commit | 265048cc897af8189c64cdfaa41820490f8fad9e (patch) | |
tree | 137791a5b379c501b5f6e5ad566994cf6bfb19df /guix | |
parent | ad21323c9649ebedca831d88a2f01aea76f62127 (diff) |
offload: Fix error message in 'guix offload test'.
Reported by Maxim Cournoyer <maxim.cournoyer@gmail.com>
in <https://bugs.gnu.org/31824>.
* guix/scripts/offload.scm (assert-node-has-guix): Fix typo in failure
message; add missing argument.
Diffstat (limited to 'guix')
-rw-r--r-- | guix/scripts/offload.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/guix/scripts/offload.scm b/guix/scripts/offload.scm index 664497bcd5..ee5857e16b 100644 --- a/guix/scripts/offload.scm +++ b/guix/scripts/offload.scm @@ -613,8 +613,8 @@ If TIMEOUT is #f, simply evaluate EXP..." (leave (G_ "failed to talk to guix-daemon on '~a' (test returned ~s)~%") name x)))) (lambda (key . args) - (leave (G_ "remove evaluation on '~a' failed:~{ ~s~}~%") - args)))) + (leave (G_ "remote evaluation on '~a' failed:~{ ~s~}~%") + name args)))) (define %random-state (delay |