diff mbox series

[v2,8/8] patman: document default 'send' command

Message ID 20221219145258.32046-8-maxim.cournoyer@savoirfairelinux.com
State Superseded
Delegated to: Simon Glass
Headers show
Series [v2,1/8] patman: cosmetic: Fix PEP 8 warnings for the gitutil module. | expand

Commit Message

Maxim Cournoyer Dec. 19, 2022, 2:52 p.m. UTC
Document that this command is the default and what it's intended for.

Signed-off-by: Maxim Cournoyer <maxim.cournoyer@savoirfairelinux.com>
---

(no changes since v1)

 tools/patman/__main__.py | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

Comments

Simon Glass Dec. 19, 2022, 7:20 p.m. UTC | #1
On Mon, 19 Dec 2022 at 07:53, Maxim Cournoyer <maxim.cournoyer@gmail.com> wrote:
>
> Document that this command is the default and what it's intended for.
>
> Signed-off-by: Maxim Cournoyer <maxim.cournoyer@savoirfairelinux.com>
> ---
>
> (no changes since v1)
>
>  tools/patman/__main__.py | 3 ++-
>  1 file changed, 2 insertions(+), 1 deletion(-)

Reviewed-by: Simon Glass <sjg@chromium.org>
diff mbox series

Patch

diff --git a/tools/patman/__main__.py b/tools/patman/__main__.py
index 82cef4fc0b..11f19281fb 100755
--- a/tools/patman/__main__.py
+++ b/tools/patman/__main__.py
@@ -56,7 +56,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')