From 7afd16467e2c4f4375584746e698a6f0db5a42f9 Mon Sep 17 00:00:00 2001 From: Andrii Shyshkalov Date: Sun, 29 Jan 2017 16:07:15 +0100 Subject: [PATCH] Follow up on Gerrit git cl status: do not treat CQ comment as reviewer reply. TBR=sergiyb@chromium.org,agable@chromium.org BUG= Change-Id: I37f02556f254fbdc78ab30e990a7cc6d05120038 Reviewed-on: https://chromium-review.googlesource.com/434477 Reviewed-by: Andrii Shyshkalov Commit-Queue: Andrii Shyshkalov --- git_cl.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/git_cl.py b/git_cl.py index ef702b95b6..b3d8c9f304 100755 --- a/git_cl.py +++ b/git_cl.py @@ -2393,7 +2393,7 @@ class _GerritChangelistImpl(_ChangelistCodereviewBase): if last_message_author.get('email') == COMMIT_BOT_EMAIL: # Ignore replies from CQ. continue - if owner != last_message_author.get('_account_id'): + if last_message_author.get('_account_id') != owner: # Some reply from non-owner. return 'reply' return 'waiting'