From 94fd88eeea05f4157d4085ba48b288667afa9516 Mon Sep 17 00:00:00 2001 From: recipe-roller Date: Mon, 10 Apr 2017 21:15:16 -0700 Subject: [PATCH] Roll recipe dependencies (trivial). This is an automated CL created by the recipe roller. This CL rolls recipe changes from upstream projects (e.g. depot_tools) into downstream projects (e.g. tools/build). More info is at https://goo.gl/zkKdpD. Use https://goo.gl/noib3a to file a bug (or complain) recipe_engine: https://crrev.com/168be2068b30c07600603f1ce7fffe8f21348965 [doc/recipes.py] stop intercepting --help (iannucci@chromium.org) TBR=iannucci@chromium.org Change-Id: If3c76b68fd224eae3bf5c333ca80ef633a7554a1 Recipe-Tryjob-Bypass-Reason: Autoroller Bugdroid-Send-Email: False Reviewed-on: https://chromium-review.googlesource.com/473791 Reviewed-by: Commit-Queue: --- infra/config/recipes.cfg | 2 +- recipes/recipes.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/infra/config/recipes.cfg b/infra/config/recipes.cfg index d593ab911..40bbfa35a 100644 --- a/infra/config/recipes.cfg +++ b/infra/config/recipes.cfg @@ -3,7 +3,7 @@ "deps": { "recipe_engine": { "branch": "master", - "revision": "e47e63a157739d48e41f71a2d3827d1a38277359", + "revision": "168be2068b30c07600603f1ce7fffe8f21348965", "url": "https://chromium.googlesource.com/external/github.com/luci/recipes-py.git" } }, diff --git a/recipes/recipes.py b/recipes/recipes.py index c0b68b730..092d00156 100755 --- a/recipes/recipes.py +++ b/recipes/recipes.py @@ -102,7 +102,7 @@ def find_engine_override(argv): any, or None if the user didn't override it.""" PREFIX = 'recipe_engine=' - p = argparse.ArgumentParser() + p = argparse.ArgumentParser(add_help=False) p.add_argument('-O', '--project-override', action='append') args, _ = p.parse_known_args(argv) for override in args.project_override or ():