guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

branch master updated: deploy: Remove use of '~*' in format string.


From: guix-commits
Subject: branch master updated: deploy: Remove use of '~*' in format string.
Date: Sat, 28 Mar 2020 10:55:44 -0400

This is an automated email from the git hooks/post-receive script.

mbakke pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 388b432  deploy: Remove use of '~*' in format string.
388b432 is described below

commit 388b432cea4ae2bb9bf4b044026b7764ab002e1e
Author: Marius Bakke <address@hidden>
AuthorDate: Sat Mar 28 15:55:13 2020 +0100

    deploy: Remove use of '~*' in format string.
    
    ...since 'msgfmt' fails to interpret it.  Reported by Vagrant Cascadian
    in <https://lists.gnu.org/archive/html/guix-devel/2020-03/msg00340.html>.
    See also <https://bugs.gnu.org/37505>.
    
    * guix/scripts/deploy.scm (show-what-to-deploy): Use ~d instead of ~* when
    displaying machines that will be deployed.
---
 guix/scripts/deploy.scm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/guix/scripts/deploy.scm b/guix/scripts/deploy.scm
index f70d41f..5c871cd 100644
--- a/guix/scripts/deploy.scm
+++ b/guix/scripts/deploy.scm
@@ -102,7 +102,7 @@ Perform the deployment specified by FILE.\n"))
   "Show the list of machines to deploy, MACHINES."
   (let ((count (length machines)))
     (format (current-error-port)
-            (N_ "The following ~*machine will be deployed:~%"
+            (N_ "The following ~d machine will be deployed:~%"
                 "The following ~d machines will be deployed:~%"
                 count)
             count)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]