diff options
author | Ludovic Courtès <ludo@gnu.org> | 2015-08-29 23:33:53 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2015-08-29 23:56:47 +0200 |
commit | 3d20ebd6cb09c328c06ea197489aa84802bed5a8 (patch) | |
tree | de3e0215a7f2453384746e55a74d63d326318433 | |
parent | 0bfdfd377ec2ea6ba589eea5db20d0de6f5349d5 (diff) | |
download | patches-3d20ebd6cb09c328c06ea197489aa84802bed5a8.tar patches-3d20ebd6cb09c328c06ea197489aa84802bed5a8.tar.gz |
refresh: Add missing newline in warning message.
Reported by karhunkynsi on #guix.
* guix/scripts/refresh.scm (update-package): Add missing newline in
string literal passed to 'warning'.
-rw-r--r-- | guix/scripts/refresh.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guix/scripts/refresh.scm b/guix/scripts/refresh.scm index 28519d78e2..e7980a97b0 100644 --- a/guix/scripts/refresh.scm +++ b/guix/scripts/refresh.scm @@ -149,7 +149,7 @@ values: 'interactive' (default), 'always', and 'never'." port-sha256))) (update-package-source package version hash))) (warning (_ "~a: version ~a could not be \ -downloaded and authenticated; not updating") +downloaded and authenticated; not updating~%") (package-name package) version))))) |