From 02b5ee82e30973a2743e032e17a0ef9748421110 Mon Sep 17 00:00:00 2001 From: Gabriel Charette Date: Wed, 8 Nov 2017 16:36:05 -0500 Subject: [PATCH] More descriptive git cl split --help info about $directory R=iannucci@chromium.org Bug: Change-Id: Icf44fd71f1521a9e7f0eb8c4710924a5e45b541b Reviewed-on: https://chromium-review.googlesource.com/759131 Reviewed-by: Robbie Iannucci Commit-Queue: Gabriel Charette --- git_cl.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/git_cl.py b/git_cl.py index ba00fb938..a68957d50 100755 --- a/git_cl.py +++ b/git_cl.py @@ -4979,7 +4979,8 @@ def CMDsplit(parser, args): the shared OWNERS file. """ parser.add_option("-d", "--description", dest="description_file", - help="A text file containing a CL description. ") + help="A text file containing a CL description in which " + "$directory will be replaced by each CL's directory.") parser.add_option("-c", "--comment", dest="comment_file", help="A text file containing a CL comment.") options, _ = parser.parse_args(args)