diff options
author | Konrad Hinsen <konrad.hinsen@fastmail.net> | 2019-10-01 17:06:58 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2019-10-01 23:34:30 +0200 |
commit | 13169000f6a1cc8513345542f3bae8978d0c6b1a (patch) | |
tree | 70b59821712e41780536979ee081c68de94bc37f | |
parent | 9e34a5f3b2d37cc8fb9f16620747df41488665be (diff) | |
download | gnu-guix-13169000f6a1cc8513345542f3bae8978d0c6b1a.tar gnu-guix-13169000f6a1cc8513345542f3bae8978d0c6b1a.tar.gz |
pull: Do not use '~*', which 'msgfmt' fails to interpret.
Really fixes <https://bugs.gnu.org/37505>.
This is a followup to f751b4646d3989d76dad9e33e39f9724c7c50be6.
* guix/scripts/pull.scm (display-channel-news): Remove second occurrence
of '~*' in a format string.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
-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 e018985469..04970cf503 100644 --- a/guix/scripts/pull.scm +++ b/guix/scripts/pull.scm @@ -314,7 +314,7 @@ to display." (removed (let ((count (length removed))) (format (current-error-port) - (N_ " ~*One channel removed:~%" + (N_ " ~a channel removed:~%" " ~a channels removed:~%" count) count) (for-each display-channel removed)))) |