diff options
author | Ludovic Courtès <ludo@gnu.org> | 2013-11-01 23:12:36 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2013-11-01 23:21:01 +0100 |
commit | 1b5ba6b1e9c1e2b6e9bf4bc664c2270272103cb7 (patch) | |
tree | 1b2dc3af4876f43fbc8801f92b40eb32e5d352b8 /guix/scripts | |
parent | a20787706c246a9451b69db075a30ee91d28538b (diff) | |
download | gnu-guix-1b5ba6b1e9c1e2b6e9bf4bc664c2270272103cb7.tar gnu-guix-1b5ba6b1e9c1e2b6e9bf4bc664c2270272103cb7.tar.gz |
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.
Diffstat (limited to 'guix/scripts')
-rw-r--r-- | guix/scripts/package.scm | 8 |
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)) |