diff --git a/docs/source/manpage.rst b/docs/source/manpage.rst index 8a58cdd..05a1f3c 100644 --- a/docs/source/manpage.rst +++ b/docs/source/manpage.rst @@ -37,8 +37,8 @@ All options available as of Flake8 3.1.0:: verbosity each time it is repeated. -q, --quiet Report only file names, or nothing. This option is repeatable. - --count Print total number of errors and warnings to standard - error and set the exit code to 1 if total is not + --count Print total number of errors and warnings + and set the exit code to 1 if total is not empty. --diff Report changes only within line number ranges in the unified diff provided on standard in by the user. diff --git a/src/flake8/main/options.py b/src/flake8/main/options.py index 131b714..af0ffed 100644 --- a/src/flake8/main/options.py +++ b/src/flake8/main/options.py @@ -52,7 +52,7 @@ def register_default_options(option_manager): add_option( '--count', action='store_true', parse_from_config=True, - help='Print total number of errors and warnings to standard error and' + help='Print total number of errors and warnings and' ' set the exit code to 1 if total is not empty.', )