From 1b5ba6b1e9c1e2b6e9bf4bc664c2270272103cb7 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Ludovic=20Court=C3=A8s?= <ludo@gnu.org>
Date: Fri, 1 Nov 2013 23:12:36 +0100
Subject: [PATCH] guix package: Fix indentation of "will be removed" messages.

* guix/scripts/package.scm (show-what-to-remove/install): Remove extra
  indentation from the removal sentences.
---
 guix/scripts/package.scm | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/guix/scripts/package.scm b/guix/scripts/package.scm
index 77406c7f394..7189256e0f9 100644
--- a/guix/scripts/package.scm
+++ b/guix/scripts/package.scm
@@ -180,13 +180,13 @@ (define (show-what-to-remove/install remove install dry-run?)
                         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))
-- 
GitLab