Commit 5e1bf38e authored by tandrii@chromium.org's avatar tandrii@chromium.org

Fix git cl status for MERGED CLs.

TBR=sergiyb@chromium.org
BUG=612414

Review-Url: https://codereview.chromium.org/1980323002

git-svn-id: svn://svn.chromium.org/chrome/trunk/tools/depot_tools@300621 0039d316-1c4b-4281-b951-d872f2087c98
parent 71929a5f
......@@ -2138,7 +2138,7 @@ class _GerritChangelistImpl(_ChangelistCodereviewBase):
except httplib.HTTPException:
return 'error'
if data['status'] == 'ABANDONED':
if data['status'] in ('ABANDONED', 'MERGED'):
return 'closed'
cq_label = data['labels'].get('Commit-Queue', {})
......
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