summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--guix/scripts/package.scm8
1 files changed, 4 insertions, 4 deletions
diff --git a/guix/scripts/package.scm b/guix/scripts/package.scm
index 77406c7f39..7189256e0f 100644
--- a/guix/scripts/package.scm
+++ b/guix/scripts/package.scm
@@ -180,13 +180,13 @@ packages that will/would be installed and removed."
                         name version path)))
        (if dry-run?
            (format (current-error-port)
-                   (N_ "The following package would be removed:~% ~{~a~%~}~%"
-                       "The following packages would be removed:~% ~{~a~%~}~%"
+                   (N_ "The following package would be removed:~%~{~a~%~}~%"
+                       "The following packages would be removed:~%~{~a~%~}~%"
                        len)
                    remove)
            (format (current-error-port)
-                   (N_ "The following package will be removed:~% ~{~a~%~}~%"
-                       "The following packages will be removed:~% ~{~a~%~}~%"
+                   (N_ "The following package will be removed:~%~{~a~%~}~%"
+                       "The following packages will be removed:~%~{~a~%~}~%"
                        len)
                    remove))))
     (_ #f))