guix package: Display newline after generation diffs.

* guix/ui.scm (display-profile-content-diff): Display an extra newline.
master
Roel Janssen 2016-11-17 23:49:29 +01:00
parent 1f9803c2a4
commit 88bdbb2a0f
No known key found for this signature in database
GPG Key ID: C3EC1DCA843072E1
1 changed files with 2 additions and 1 deletions

View File

@ -1094,7 +1094,8 @@ DURATION-RELATION with the current time."
(removed (lset-difference
equal-entry? (list-entries old) (list-entries new))))
(for-each (cut display-entry <> "+") added)
(for-each (cut display-entry <> "-") removed)))
(for-each (cut display-entry <> "-") removed)
(newline)))
(display-diff profile gen1 gen2))