summaryrefslogtreecommitdiff
path: root/guix/scripts/pull.scm
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2019-10-01 10:46:16 +0200
committerLudovic Courtès <ludo@gnu.org>2019-10-01 10:50:24 +0200
commit43f7fd8783af1e824904a76115a8ae8ccbb19f06 (patch)
tree01330b85b59ec9ace2277fb33a0563db5cdca6bc /guix/scripts/pull.scm
parent8b4615ab54dcd25c6cfa22f9416a8f1c74d36612 (diff)
downloadguix-patches-43f7fd8783af1e824904a76115a8ae8ccbb19f06.tar
guix-patches-43f7fd8783af1e824904a76115a8ae8ccbb19f06.tar.gz
pull: Do not use '~*', which 'msgfmt' fails to interpret.
Fixes <https://bugs.gnu.org/37505>. Reported by Konrad Hinsen <konrad.hinsen@fastmail.net>. * guix/scripts/pull.scm (display-channel-news): Use ~a instead of ~* when reporting new channels.
Diffstat (limited to 'guix/scripts/pull.scm')
-rw-r--r--guix/scripts/pull.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/guix/scripts/pull.scm b/guix/scripts/pull.scm
index 0372278705..e018985469 100644
--- a/guix/scripts/pull.scm
+++ b/guix/scripts/pull.scm
@@ -304,7 +304,7 @@ to display."
(new
(let ((count (length new)))
(format (current-error-port)
- (N_ " ~*One new channel:~%"
+ (N_ " ~a new channel:~%"
" ~a new channels:~%" count)
count)
(for-each display-channel new))))