From 4895dde1b643c04fb8c36c7e9954899e2d5791f0 Mon Sep 17 00:00:00 2001 From: "Kenneth M. Elf Sternberg" Date: Tue, 4 Oct 2016 10:38:53 -0700 Subject: [PATCH] Fixed a spelling error. --- git_lint/reporters.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/git_lint/reporters.py b/git_lint/reporters.py index 6f7c6ac..ce053ac 100644 --- a/git_lint/reporters.py +++ b/git_lint/reporters.py @@ -44,9 +44,9 @@ def print_report(results, unlintable_filenames, cant_lint_filenames, print ('') if len(broken_linter_names) and (len(cant_lint_filenames) or ('verbose' in options)): - print(_('These linters could not be run:'), ','.join(broken_linter_names)) + print(_('Linters not found:'), ','.join(broken_linter_names)) if len(cant_lint_filenames): - print(_('Files not linted:')) + print(' ' + _('Files not linted:')) print('\n'.join([' {}'.format(f) for f in cant_lint_filenames])) print('') @@ -56,7 +56,7 @@ def print_report(results, unlintable_filenames, cant_lint_filenames, print('') if len(unfindable_filenames): - print(_('Files not be found:')) + print(_('Files not found:')) print('\n'.join([' {}'.format(f) for f in unfindable_filenames])) print('')