From 54cf6ea0b18c1768658c772297782bf6ab9c73eb Mon Sep 17 00:00:00 2001 From: Tomislav Maricevic Date: Thu, 10 Feb 2022 10:33:19 +0100 Subject: [PATCH] Clarify that --count writes to standard output --- src/flake8/main/options.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/flake8/main/options.py b/src/flake8/main/options.py index cb4cd73..3479893 100644 --- a/src/flake8/main/options.py +++ b/src/flake8/main/options.py @@ -157,7 +157,7 @@ def register_default_options(option_manager: OptionManager) -> None: "--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 to standard output and" " set the exit code to 1 if total is not empty.", )