Commit c6ecea3d authored by sergiyb@chromium.org's avatar sergiyb@chromium.org

Added default value for the quiet parameter

The activate_end method is used in infra/bootstrap/build_deps.py, which doesn't
pass the value for this parameter.

R=pgervais@chromium.org
BUG=503067

Review URL: https://codereview.chromium.org/1213113002

git-svn-id: svn://svn.chromium.org/chrome/trunk/tools/depot_tools@295893 0039d316-1c4b-4281-b951-d872f2087c98
parent 2aa134c4
...@@ -154,7 +154,7 @@ def install(deps): ...@@ -154,7 +154,7 @@ def install(deps):
os.path.join(ROOT, '.wheelcache'), '-f', ipath] + requirements) os.path.join(ROOT, '.wheelcache'), '-f', ipath] + requirements)
def activate_env(env, deps, quiet): def activate_env(env, deps, quiet=False):
if hasattr(sys, 'real_prefix'): if hasattr(sys, 'real_prefix'):
LOGGER.error('Already activated environment!') LOGGER.error('Already activated environment!')
return return
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment