From: Maxim Cournoyer Date: Mon, 19 Dec 2022 22:32:45 +0000 (-0500) Subject: patman: document default 'send' command X-Git-Url: http://git.dujemihanovic.xyz/login.html?a=commitdiff_plain;h=30529307141339d4780bddb3557c115fbf1f51c1;p=u-boot.git patman: document default 'send' command Document that this command is the default and what it's intended for. Reviewed-by: Simon Glass Signed-off-by: Maxim Cournoyer --- diff --git a/tools/patman/__main__.py b/tools/patman/__main__.py index 70968f661b..ece59c5a62 100755 --- a/tools/patman/__main__.py +++ b/tools/patman/__main__.py @@ -55,7 +55,8 @@ parser.add_argument('-H', '--full-help', action='store_true', dest='full_help', default=False, help='Display the README file') subparsers = parser.add_subparsers(dest='cmd') -send = subparsers.add_parser('send') +send = subparsers.add_parser( + 'send', help='Format, check and email patches (default command)') send.add_argument('-i', '--ignore-errors', action='store_true', dest='ignore_errors', default=False, help='Send patches email even if patch errors are found')