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:
@@ -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()
|
||||
|
||||
Reference in New Issue
Block a user