Modified: trunk/Tools/ChangeLog (187331 => 187332)
--- trunk/Tools/ChangeLog 2015-07-24 07:55:01 UTC (rev 187331)
+++ trunk/Tools/ChangeLog 2015-07-24 08:03:51 UTC (rev 187332)
@@ -1,3 +1,13 @@
+2015-07-24 Dean Johnson <[email protected]>
+
+ commit-queue flags in webkit-patch are confusing
+ https://bugs.webkit.org/show_bug.cgi?id=88694
+
+ Reviewed by Csaba Osztrogonác.
+
+ * Scripts/webkitpy/tool/steps/options.py:
+ (Options): Updated help string to be more descriptive.
+
2015-07-23 Brent Fulgham <[email protected]>
[Win] Implement proper High DPI support features
Modified: trunk/Tools/Scripts/webkitpy/tool/steps/options.py (187331 => 187332)
--- trunk/Tools/Scripts/webkitpy/tool/steps/options.py 2015-07-24 07:55:01 UTC (rev 187331)
+++ trunk/Tools/Scripts/webkitpy/tool/steps/options.py 2015-07-24 08:03:51 UTC (rev 187332)
@@ -51,7 +51,7 @@
open_bug = make_option("--open-bug", action="" dest="open_bug", default=False, help="Opens the associated bug in a browser.")
parent_command = make_option("--parent-command", action="" dest="parent_command", default=None, help="(Internal) The command that spawned this instance.")
quiet = make_option("--quiet", action="" dest="quiet", default=False, help="Produce less console output.")
- request_commit = make_option("--request-commit", action="" dest="request_commit", default=False, help="Mark the patch as needing auto-commit after review.")
+ request_commit = make_option("--request-commit", action="" dest="request_commit", default=False, help="Request that the patch be added to the commit queue after review.")
review = make_option("--no-review", action="" dest="review", default=True, help="Do not mark the patch for review.")
reviewer = make_option("-r", "--reviewer", action="" type="string", dest="reviewer", help="Update ChangeLogs to say Reviewed by REVIEWER.")
suggest_reviewers = make_option("--suggest-reviewers", action="" default=False, help="Offer to CC appropriate reviewers.")