From b4f6a229350eda6b13f1d21f55bffbb439579beb Mon Sep 17 00:00:00 2001 From: "tandrii@chromium.org" Date: Thu, 3 Mar 2016 01:11:04 +0000 Subject: [PATCH] git cl status: do not show CQ Dry run as 'commit'. R=jsbell@chromium.org,phajdan.jr@chromium.org BUG= Review URL: https://codereview.chromium.org/1764463002 git-svn-id: svn://svn.chromium.org/chrome/trunk/tools/depot_tools@299068 0039d316-1c4b-4281-b951-d872f2087c98 --- git_cl.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/git_cl.py b/git_cl.py index 2174b862d..ef974d50f 100755 --- a/git_cl.py +++ b/git_cl.py @@ -1235,7 +1235,7 @@ or verify this branch is set up to track another (via the --track argument to if props.get('closed'): # Issue is closed. return 'closed' - if props.get('commit'): + if props.get('commit') and not props.get('cq_dry_run', False): # Issue is in the commit queue. return 'commit'