diff options
author | Ludovic Courtès <ludo@gnu.org> | 2017-12-03 23:17:26 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2017-12-03 23:18:53 +0100 |
commit | 3fb6464ba43141b671481ce5ba158b6e6d1badfe (patch) | |
tree | d01b03c205f790e3bed1890510e35fe62676a73c | |
parent | 4bd70904c7f555a953808a9a4f892f462ffd352f (diff) | |
download | guix-3fb6464ba43141b671481ce5ba158b6e6d1badfe.tar guix-3fb6464ba43141b671481ce5ba158b6e6d1badfe.tar.gz |
ui: Tweak conflicting profile entry error message.
* guix/ui.scm (call-with-error-handling): Use 'manifest-entry-output*'
when reporting conflicting profile entries.
-rw-r--r-- | guix/ui.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/guix/ui.scm b/guix/ui.scm index 9ed8f37521..e40fe576ba 100644 --- a/guix/ui.scm +++ b/guix/ui.scm @@ -555,9 +555,9 @@ interpreted." ("out" "") (output (string-append ":" output)))) - (report-error (G_ "profile contains conflicting entries for ~a:~a~%") + (report-error (G_ "profile contains conflicting entries for ~a~a~%") (manifest-entry-name entry) - (manifest-entry-output entry)) + (manifest-entry-output* entry)) (report-error (G_ " first entry: ~a@~a~a ~a~%") (manifest-entry-name entry) (manifest-entry-version entry) |