Index: git_cl.py |
diff --git a/git_cl.py b/git_cl.py |
index eaaed167aff5f4121c58a9aaf0814339ac337371..af8b0a859f1eeb64cec19e6f5525b074847955eb 100755 |
--- a/git_cl.py |
+++ b/git_cl.py |
@@ -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', {}) |