~ruther/guix-local

1b5ba6b1e9c1e2b6e9bf4bc664c2270272103cb7 — Ludovic Courtès 12 years ago a207877
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.
1 files changed, 4 insertions(+), 4 deletions(-)

M guix/scripts/package.scm
M guix/scripts/package.scm => guix/scripts/package.scm +4 -4
@@ 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))