summaryrefslogtreecommitdiff
path: root/guix
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2014-11-19 22:44:22 +0100
committerLudovic Courtès <ludo@gnu.org>2014-11-19 22:52:30 +0100
commitdb6dcf816f55db26dac42e669d0851c8be468d2d (patch)
tree1e08bf7dd0c556b14b7bc8dfecfb0b0261479876 /guix
parent836f02bf524acd72284b3bc57742ca2815b01e47 (diff)
lint: Use localized checker descriptions.
* guix/scripts/lint.scm (list-checkers-and-exit): Wrap 'lint-checker-description' call in (_ ...).
Diffstat (limited to 'guix')
-rw-r--r--guix/scripts/lint.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/guix/scripts/lint.scm b/guix/scripts/lint.scm
index 4b35970f52..2ba7a68335 100644
--- a/guix/scripts/lint.scm
+++ b/guix/scripts/lint.scm
@@ -74,7 +74,7 @@
(for-each (lambda (checker)
(format #t "- ~a: ~a~%"
(lint-checker-name checker)
- (lint-checker-description checker)))
+ (_ (lint-checker-description checker))))
%checkers)
(exit 0))