Commit e1448c07 authored by Russ Cox's avatar Russ Cox

codereview: show 'not lgtms' in hg p output (with lgtms)

R=golang-dev, iant
CC=golang-dev
https://golang.org/cl/7245043
parent 56517aed
......@@ -544,7 +544,7 @@ def LoadCL(ui, repo, name, web=True):
cl.private = d.get('private', False) != False
cl.lgtm = []
for m in d.get('messages', []):
if m.get('approval', False) == True:
if m.get('approval', False) == True or m.get('disapproval', False) == True:
who = re.sub('@.*', '', m.get('sender', ''))
text = re.sub("\n(.|\n)*", '', m.get('text', ''))
cl.lgtm.append((who, text))
......
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