Skip to content

Commit

Permalink
fix(help): add trailing dot to help text
Browse files Browse the repository at this point in the history
Click’s built-in help texts, such as `--help` or `--version`, are all
written with a trailing a dot.
  • Loading branch information
JNRowe authored and Toilal committed Jan 6, 2021
1 parent 3507ba3 commit 1ed426f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion click_logging/options.py
Expand Up @@ -21,7 +21,7 @@ def simple_verbosity_option(logger=None, *names, **kwargs):
kwargs.setdefault('default', 'INFO')
kwargs.setdefault('metavar', 'LVL')
kwargs.setdefault('expose_value', False)
kwargs.setdefault('help', 'Either CRITICAL, ERROR, WARNING, INFO or DEBUG')
kwargs.setdefault('help', 'Either CRITICAL, ERROR, WARNING, INFO or DEBUG.')
kwargs.setdefault('is_eager', True)

logger = _normalize_logger(logger)
Expand Down

0 comments on commit 1ed426f

Please sign in to comment.