diff options
author | Ludovic Courtès <ludo@gnu.org> | 2017-10-09 23:17:49 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2017-10-09 23:17:49 +0200 |
commit | 735f6b63d05a55fb8e72d8678c06700cb7ef8059 (patch) | |
tree | 418ae7e9984909f4cbd9f958a7c73c2d2070018e /guix | |
parent | 3d9637a93df2bd8e77f4faff6ad775d145073145 (diff) | |
download | gnu-guix-735f6b63d05a55fb8e72d8678c06700cb7ef8059.tar gnu-guix-735f6b63d05a55fb8e72d8678c06700cb7ef8059.tar.gz |
lint: Remove extra newline.
* guix/scripts/lint.scm (check-for-updates): Remove trailing "~%".
Diffstat (limited to 'guix')
-rw-r--r-- | guix/scripts/lint.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guix/scripts/lint.scm b/guix/scripts/lint.scm index cd90257de3..fc61f0b547 100644 --- a/guix/scripts/lint.scm +++ b/guix/scripts/lint.scm @@ -835,7 +835,7 @@ from ~s: ~a (~s)~%") (when (version>? (upstream-source-version source) (package-version package)) (emit-warning package - (format #f (G_ "can be upgraded to ~a~%") + (format #f (G_ "can be upgraded to ~a") (upstream-source-version source))))) (#f #f))) ; cannot find newer upstream release |