From ef6ee9850bb9d0c1a1dff5f116080e8f04ffff13 Mon Sep 17 00:00:00 2001 From: Edward Lemur Date: Mon, 18 Sep 2017 11:41:47 +0200 Subject: [PATCH] Pass environment variable as string in autoroll script. NOTRY=True TBR=kjellander@webrtc.org Bug: chromium:765231 Change-Id: I0121160ebd991815dd95dd6b145a68206be2d731 Reviewed-on: https://webrtc-review.googlesource.com/1844 Reviewed-by: Edward Lemur Commit-Queue: Edward Lemur Cr-Commit-Position: refs/heads/master@{#19883} --- tools_webrtc/autoroller/roll_deps.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools_webrtc/autoroller/roll_deps.py b/tools_webrtc/autoroller/roll_deps.py index 26e2e093d3..0b1279a68c 100755 --- a/tools_webrtc/autoroller/roll_deps.py +++ b/tools_webrtc/autoroller/roll_deps.py @@ -409,7 +409,7 @@ def _UploadCL(dry_run, skip_cq=False): if not skip_cq: logging.info('Sending the CL to the CQ...') cmd.extend(['--use-commit-queue', '--send-mail']) - _RunCommand(cmd, extra_env={'EDITOR': 'true', 'SKIP_GCE_AUTH_FOR_GIT': 1}) + _RunCommand(cmd, extra_env={'EDITOR': 'true', 'SKIP_GCE_AUTH_FOR_GIT': '1'}) def main():