describe: In 'channels' format, quote the channel name.

Fixes a regression introduced in
commit 8548f99549.

* guix/scripts/describe.scm (channel->sexp): Quote the channel name.
This commit is contained in:
Ludovic Courtès 2018-12-07 14:08:29 +01:00
parent 814652b41f
commit ed9c8eb4e5
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

View file

@ -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))))