diff options
author | Ludovic Courtès <ludo@gnu.org> | 2018-12-07 14:08:29 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2018-12-07 15:14:12 +0100 |
commit | ed9c8eb4e5f4ab5d51e3bb27ccb17bd5b43bb803 (patch) | |
tree | d8affbaff3d62c099430167ae88637348d868759 | |
parent | 814652b41f0da9e84f9f526e2a2e2c5ebfd66970 (diff) | |
download | guix-ed9c8eb4e5f4ab5d51e3bb27ccb17bd5b43bb803.tar.gz |
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.
-rw-r--r-- | guix/scripts/describe.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guix/scripts/describe.scm b/guix/scripts/describe.scm index f21311af09..7d0ecb0a4d 100644 --- a/guix/scripts/describe.scm +++ b/guix/scripts/describe.scm @@ -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)))) |