Improve help messages

Help messages are in normally fully sentences starting with a capital
letter, some of the help messages follow this but not all. Adjust all so
that help messages look consistent.

Also, improve wording of --help text.

Change-Id: Ia22ccc42d71a4c9d7085303939dae9948ba52418
This commit is contained in:
Andreas Jaeger
2015-08-07 16:17:11 +02:00
parent 3473869011
commit 784f6d6d3d
3 changed files with 7 additions and 7 deletions

View File

@@ -202,7 +202,7 @@ def test_build_option_parser_conflicting_option_should_throw():
parser.add_argument(
'-h', '--help',
default=self, # tricky
help="show this help message and exit",
help="Show help message and exit.",
)
# TODO: tests should really use unittest2.
@@ -232,7 +232,7 @@ def test_option_parser_conflicting_option_custom_arguments_should_not_throw():
parser.add_argument(
'-h', '--help',
default=self, # tricky
help="show this help message and exit",
help="Show this help message and exit.",
)
MyApp()