summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2014-04-05 21:02:54 +0200
committerLudovic Courtès <ludo@gnu.org>2014-04-05 21:04:17 +0200
commit512314d738754eeb513a0d1b8074f635ab4f2f06 (patch)
treef7cf45707fd750ca1516e3af3610c62c5f6201ff
parenta28ef66e0482665bc81b8dbcc49e3b1f8fb9917d (diff)
downloadguix-patches-512314d738754eeb513a0d1b8074f635ab4f2f06.tar
guix-patches-512314d738754eeb513a0d1b8074f635ab4f2f06.tar.gz
guix package: Fix indentation of packages to remove.
* guix/scripts/package.scm (show-what-to-remove/install): Add space when showing packages to remove.
-rw-r--r--guix/scripts/package.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/guix/scripts/package.scm b/guix/scripts/package.scm
index d4309094e8..3947159c2e 100644
--- a/guix/scripts/package.scm
+++ b/guix/scripts/package.scm
@@ -178,7 +178,7 @@ packages that will/would be installed and removed."
(match remove
((($ <manifest-entry> name version output path _) ..1)
(let ((len (length name))
- (remove (map (cut format #f " ~a-~a\t~a\t~a" <> <> <> <>)
+ (remove (map (cut format #f " ~a-~a\t~a\t~a" <> <> <> <>)
name version output path)))
(if dry-run?
(format (current-error-port)