Skip to content
Snippets Groups Projects
Unverified Commit ed9c8eb4 authored by Ludovic Courtès's avatar Ludovic Courtès
Browse files

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

Fixes a regression introduced in
commit 8548f995.

* guix/scripts/describe.scm (channel->sexp): Quote the channel name.
parent 814652b4
No related branches found
No related tags found
Loading
...@@ -89,7 +89,7 @@ (define (display-package-search-path fmt) ...@@ -89,7 +89,7 @@ (define (display-package-search-path fmt)
(define (channel->sexp channel) (define (channel->sexp channel)
`(channel `(channel
(name ,(channel-name channel)) (name ',(channel-name channel))
(url ,(channel-url channel)) (url ,(channel-url channel))
(commit ,(channel-commit channel)))) (commit ,(channel-commit channel))))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment