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.
This commit is contained in:
parent
a20787706c
commit
1b5ba6b1e9
1 changed files with 4 additions and 4 deletions
|
@ -180,13 +180,13 @@ packages that will/would be installed and removed."
|
||||||
name version path)))
|
name version path)))
|
||||||
(if dry-run?
|
(if dry-run?
|
||||||
(format (current-error-port)
|
(format (current-error-port)
|
||||||
(N_ "The following package would be removed:~% ~{~a~%~}~%"
|
(N_ "The following package would be removed:~%~{~a~%~}~%"
|
||||||
"The following packages would be removed:~% ~{~a~%~}~%"
|
"The following packages would be removed:~%~{~a~%~}~%"
|
||||||
len)
|
len)
|
||||||
remove)
|
remove)
|
||||||
(format (current-error-port)
|
(format (current-error-port)
|
||||||
(N_ "The following package will be removed:~% ~{~a~%~}~%"
|
(N_ "The following package will be removed:~%~{~a~%~}~%"
|
||||||
"The following packages will be removed:~% ~{~a~%~}~%"
|
"The following packages will be removed:~%~{~a~%~}~%"
|
||||||
len)
|
len)
|
||||||
remove))))
|
remove))))
|
||||||
(_ #f))
|
(_ #f))
|
||||||
|
|
Reference in a new issue