lint: Use localized checker descriptions.

* guix/scripts/lint.scm (list-checkers-and-exit): Wrap
  'lint-checker-description' call in (_ ...).
This commit is contained in:
Ludovic Courtès 2014-11-19 22:44:22 +01:00
parent 836f02bf52
commit db6dcf816f

View file

@ -74,7 +74,7 @@ (define (list-checkers-and-exit)
(for-each (lambda (checker)
(format #t "- ~a: ~a~%"
(lint-checker-name checker)
(lint-checker-description checker)))
(_ (lint-checker-description checker))))
%checkers)
(exit 0))