From d56eea85e65637067f02e43aab2792bf87ce4139 Mon Sep 17 00:00:00 2001 From: Ethan Dalool Date: Thu, 8 Oct 2020 09:39:41 -0700 Subject: [PATCH] Fix punctuation of these statements. --- voussoirkit/betterhelp.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/voussoirkit/betterhelp.py b/voussoirkit/betterhelp.py index 903953e..91e6dc9 100644 --- a/voussoirkit/betterhelp.py +++ b/voussoirkit/betterhelp.py @@ -143,11 +143,11 @@ def subparser_betterhelp(parser, main_docstring, sub_docstrings): if command not in sub_docstrings: print(main_docstring) if command == '': - because = 'you did not choose a command.' - print(f'You are seeing the default help text because {because}') + because = 'you did not choose a command' + print(f'You are seeing the default help text because {because}.') elif command not in HELPSTRINGS: because = f'"{command}" was not recognized' - print(f'You are seeing the default help text because {because}') + print(f'You are seeing the default help text because {because}.') return 1 argument = listget(argv, 1, '').lower()