Skip to content
Snippets Groups Projects
Commit e0a4d06a authored by Masahiro Yamada's avatar Masahiro Yamada Committed by Tom Rini
Browse files

patman: refactor help message


"patman [options]" is displayed by default.

Append the rest of help messages to parser.usage
instead of replacing it.

Signed-off-by: default avatarMasahiro Yamada <yamada.m@jp.panasonic.com>
parent 3ff291f3
No related branches found
No related tags found
No related merge requests found
...@@ -58,7 +58,7 @@ parser.add_option('--no-check', action='store_false', dest='check_patch', ...@@ -58,7 +58,7 @@ parser.add_option('--no-check', action='store_false', dest='check_patch',
parser.add_option('--no-tags', action='store_false', dest='process_tags', parser.add_option('--no-tags', action='store_false', dest='process_tags',
default=True, help="Don't process subject tags as aliaes") default=True, help="Don't process subject tags as aliaes")
parser.usage = """patman [options] parser.usage += """
Create patches from commits in a branch, check them and email them as Create patches from commits in a branch, check them and email them as
specified by tags you place in the commits. Use -n to do a dry run first.""" specified by tags you place in the commits. Use -n to do a dry run first."""
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment