diff options
author | Ludovic Courtès <ludo@gnu.org> | 2020-04-18 23:21:34 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2020-04-19 13:27:06 +0200 |
commit | 04594054d6cddb985cb1bfce1c84372c81f87636 (patch) | |
tree | 38204647931e77b3629572252e2bc0a3fffbabac | |
parent | ea6594e08e2724c64bc07724a07479fc1633dede (diff) |
status: Remove extra space before ellipsis.
Extra space was introduced in 8fa4ac5be4d5f8a1e62635842b16486832ff49f1.
* guix/status.scm (print-build-event): Remove extra space before
ellipsis.
-rw-r--r-- | guix/status.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/guix/status.scm b/guix/status.scm index 45e441eac5..f40d5d59b9 100644 --- a/guix/status.scm +++ b/guix/status.scm @@ -480,8 +480,8 @@ addition to build events." (let ((count (match (assq-ref properties 'profile) (#f 0) (lst (or (assq-ref lst 'count) 0))))) - (format port (info (N_ "building profile with ~a package ..." - "building profile with ~a packages ..." + (format port (info (N_ "building profile with ~a package..." + "building profile with ~a packages..." count)) count))) ('profile-hook |