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.
master
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
1 changed files with 1 additions and 1 deletions

View File

@ -89,7 +89,7 @@ Display information about the channels currently in use.\n"))
(define (channel->sexp channel)
`(channel
(name ,(channel-name channel))
(name ',(channel-name channel))
(url ,(channel-url channel))
(commit ,(channel-commit channel))))