diff options
author | Ludovic Courtès <ludo@gnu.org> | 2019-10-01 10:46:16 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2019-10-01 10:50:24 +0200 |
commit | 43f7fd8783af1e824904a76115a8ae8ccbb19f06 (patch) | |
tree | 01330b85b59ec9ace2277fb33a0563db5cdca6bc /guix | |
parent | 8b4615ab54dcd25c6cfa22f9416a8f1c74d36612 (diff) |
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')
-rw-r--r-- | guix/scripts/pull.scm | 2 |
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)))) |