From 41b59ca8bf4d1a0320967fb3109791a43d42b39d Mon Sep 17 00:00:00 2001 From: Henrik Kjellander Date: Wed, 28 Jun 2017 11:29:34 +0200 Subject: [PATCH] Fix CQ_INCLUDE_TRYBOTS CL value generated by roll_deps.py A seen in https://codereview.webrtc.org/2956153004/ the CQ is picky about the ending ;, so this CL removes it. BUG=None TBR=ehmaldonado@webrtc.org NOTRY=True Change-Id: I5e6359f0966f171c98225a982da042cc7147f765 Reviewed-on: https://chromium-review.googlesource.com/552138 Reviewed-by: Henrik Kjellander Reviewed-by: Edward Lesmes Commit-Queue: Edward Lemur Cr-Commit-Position: refs/heads/master@{#18807} --- 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 376c9a744e..2d8bd721a7 100755 --- a/tools_webrtc/autoroller/roll_deps.py +++ b/tools_webrtc/autoroller/roll_deps.py @@ -29,7 +29,7 @@ DONT_AUTOROLL_THESE = [ # Run these CQ trybots in addition to the default ones in infra/config/cq.cfg. EXTRA_TRYBOTS = ( - 'master.internal.tryserver.corp.webrtc:linux_internal;' + 'master.internal.tryserver.corp.webrtc:linux_internal' ) WEBRTC_URL = 'https://chromium.googlesource.com/external/webrtc'