From ed9c8eb4e5f4ab5d51e3bb27ccb17bd5b43bb803 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Ludovic=20Court=C3=A8s?= <ludo@gnu.org>
Date: Fri, 7 Dec 2018 14:08:29 +0100
Subject: [PATCH] describe: In 'channels' format, quote the channel name.

Fixes a regression introduced in
commit 8548f995494d8d6358e6a8d7bc3b3bb5a0cbecb5.

* guix/scripts/describe.scm (channel->sexp): Quote the channel name.
---
 guix/scripts/describe.scm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/guix/scripts/describe.scm b/guix/scripts/describe.scm
index f21311af094..7d0ecb0a4d5 100644
--- a/guix/scripts/describe.scm
+++ b/guix/scripts/describe.scm
@@ -89,7 +89,7 @@ (define (display-package-search-path fmt)
 
 (define (channel->sexp channel)
   `(channel
-    (name ,(channel-name channel))
+    (name ',(channel-name channel))
     (url ,(channel-url channel))
     (commit ,(channel-commit channel))))
 
-- 
GitLab