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
diff --git a/git_cl.py b/git_cl.py
index 2174b86..ef974d5 100755
--- a/git_cl.py
+++ b/git_cl.py
@@ -1235,7 +1235,7 @@
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'