diff options
| author | Ludovic Courtès <ludo@gnu.org> | 2013-04-25 23:07:24 +0200 |
|---|---|---|
| committer | Ludovic Courtès <ludo@gnu.org> | 2013-04-25 23:07:24 +0200 |
| commit | dfb43e45b5d5a421be21422f825ae48cd44c1188 (patch) | |
| tree | 3b99d44d482352f11291a2d3c2b5101516154884 | |
| parent | 43d8f4904c8dbd4d28017ce63b929ebb27a897d6 (diff) | |
gnu-maintenance: Add newline in warning messages.
* guix/gnu-maintenance.scm (download-tarball): Add newline in warning
messages.
| -rw-r--r-- | guix/gnu-maintenance.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/guix/gnu-maintenance.scm b/guix/gnu-maintenance.scm index 4c7241fc8..be739e34a 100644 --- a/guix/gnu-maintenance.scm +++ b/guix/gnu-maintenance.scm @@ -356,9 +356,9 @@ success, return the tarball file name." (if ret tarball (begin - (warning (_ "signature verification failed for `~a'") + (warning (_ "signature verification failed for `~a'~%") base) - (warning (_ "(could be because the public key is not in your keyring)")) + (warning (_ "(could be because the public key is not in your keyring)~%")) #f))))) (define (package-update store package) |