Changeset 187332 in webkit
- Timestamp:
- Jul 24, 2015, 1:03:51 AM (11 years ago)
- Location:
- trunk/Tools
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
Scripts/webkitpy/tool/steps/options.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Tools/ChangeLog
r187245 r187332 1 2015-07-24 Dean Johnson <dean_johnson@apple.com> 2 3 commit-queue flags in webkit-patch are confusing 4 https://bugs.webkit.org/show_bug.cgi?id=88694 5 6 Reviewed by Csaba Osztrogonác. 7 8 * Scripts/webkitpy/tool/steps/options.py: 9 (Options): Updated help string to be more descriptive. 10 1 11 2015-07-23 Brent Fulgham <bfulgham@apple.com> 2 12 -
trunk/Tools/Scripts/webkitpy/tool/steps/options.py
r178622 r187332 52 52 parent_command = make_option("--parent-command", action="store", dest="parent_command", default=None, help="(Internal) The command that spawned this instance.") 53 53 quiet = make_option("--quiet", action="store_true", dest="quiet", default=False, help="Produce less console output.") 54 request_commit = make_option("--request-commit", action="store_true", dest="request_commit", default=False, help=" Mark the patch as needing auto-commitafter review.")54 request_commit = make_option("--request-commit", action="store_true", dest="request_commit", default=False, help="Request that the patch be added to the commit queue after review.") 55 55 review = make_option("--no-review", action="store_false", dest="review", default=True, help="Do not mark the patch for review.") 56 56 reviewer = make_option("-r", "--reviewer", action="store", type="string", dest="reviewer", help="Update ChangeLogs to say Reviewed by REVIEWER.")
Note:
See TracChangeset
for help on using the changeset viewer.