Modified: trunk/Tools/ChangeLog (237043 => 237044)
--- trunk/Tools/ChangeLog 2018-10-11 19:26:27 UTC (rev 237043)
+++ trunk/Tools/ChangeLog 2018-10-11 19:32:56 UTC (rev 237044)
@@ -1,3 +1,11 @@
+2018-10-11 Tim Horton <[email protected]>
+
+ REGRESSION (r237037): Cannot use webkit-patch upload, always fails with unknown 'cc_radar'
+
+ * Scripts/webkitpy/tool/steps/options.py:
+ (Options):
+ Fix the name of the variable that the --cc-radar option writes into.
+
2018-10-10 Dean Jackson <[email protected]>
Add --cc-radar option to webkit-patch bug creation
Modified: trunk/Tools/Scripts/webkitpy/tool/steps/options.py (237043 => 237044)
--- trunk/Tools/Scripts/webkitpy/tool/steps/options.py 2018-10-11 19:26:27 UTC (rev 237043)
+++ trunk/Tools/Scripts/webkitpy/tool/steps/options.py 2018-10-11 19:32:56 UTC (rev 237044)
@@ -36,7 +36,7 @@
build = make_option("--build", action="" dest="build", default=False, help="Build and run run-webkit-tests before committing.")
build_style = make_option("--build-style", action="" dest="build_style", default=None, help="Whether to build debug, release, or both.")
cc = make_option("--cc", action="" type="string", dest="cc", help="Comma-separated list of email addresses to carbon-copy.")
- cc_radar = make_option("--cc-radar", action="" dest="radar", default=False, help="Add webkit-bug-importer/Radar to the CC list.")
+ cc_radar = make_option("--cc-radar", action="" dest="cc_radar", default=False, help="Add webkit-bug-importer/Radar to the CC list.")
check_style = make_option("--ignore-style", action="" dest="check_style", default=True, help="Don't check to see if the patch has proper style before uploading.")
check_style_filter = make_option("--check-style-filter", action="" type="string", dest="check_style_filter", default=None, help="Filter style-checker rules (see check-webkit-style --help).")
clean = make_option("--no-clean", action="" dest="clean", default=True, help="Don't check if the working directory is clean before applying patches")