From 4eb4dc0cfc3dd8e52a1de94707acc1273f740de5 Mon Sep 17 00:00:00 2001 From: Brad Fitzpatrick Date: Tue, 1 Jul 2014 09:25:34 -0700 Subject: [PATCH] codereview: update name of the a+c tool LGTM=rsc R=rsc, minux CC=golang-codereviews https://golang.org/cl/105480043 --- lib/codereview/codereview.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/codereview/codereview.py b/lib/codereview/codereview.py index e07b1ce2c8..f7db3870b0 100644 --- a/lib/codereview/codereview.py +++ b/lib/codereview/codereview.py @@ -2057,7 +2057,7 @@ def needLGTM(cl): isGobot = 'gobot' in rev or 'gobot@swtch.com' in rev or 'gobot@golang.org' in rev # A+C CLs generated by addca do not need LGTM - if cl.desc.startswith('A+C:') and 'Generated by addca.' in cl.desc and isGobot: + if cl.desc.startswith('A+C:') and 'Generated by a+c.' in cl.desc and isGobot: return False # CLs modifying only go1.x.txt do not need LGTM -- 2.48.1