From dae950ca50bca57c6d8c5fd8946de5eece614f0a Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Ludovic=20Court=C3=A8s?= <ludo@gnu.org>
Date: Wed, 28 Aug 2019 18:51:49 +0200
Subject: [PATCH] deploy: Do not quote error messages.

* guix/scripts/deploy.scm (guix-deploy): Do not quote the message.
---
 guix/scripts/deploy.scm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/guix/scripts/deploy.scm b/guix/scripts/deploy.scm
index 6a67985c8b5..329de411430 100644
--- a/guix/scripts/deploy.scm
+++ b/guix/scripts/deploy.scm
@@ -94,7 +94,7 @@ (define (handle-argument arg result)
                         (machine-display-name machine))
                   (parameterize ((%graft? (assq-ref opts 'graft?)))
                     (guard (c ((message-condition? c)
-                               (report-error (G_ "failed to deploy ~a: '~a'~%")
+                               (report-error (G_ "failed to deploy ~a: ~a~%")
                                              (machine-display-name machine)
                                              (condition-message c)))
                               ((deploy-error? c)
-- 
GitLab