mirror of
https://github.com/golang/go
synced 2024-11-12 00:20:22 -07:00
codereview: fix hg sync closing of CLs for subrepositories
The regexp for closing CLs that were sent by you but committed by someone else only matched messages for the main repository, because of the added &repo=... for subrepositories. R=golang-dev, r CC=golang-dev https://golang.org/cl/14512045
This commit is contained in:
parent
950c284b11
commit
50d4dae80b
@ -2402,7 +2402,7 @@ def IsRietveldSubmitted(ui, clname, hex):
|
||||
return False
|
||||
for msg in dict.get("messages", []):
|
||||
text = msg.get("text", "")
|
||||
m = re.match('\*\*\* Submitted as [^*]*?([0-9a-f]+) \*\*\*', text)
|
||||
m = re.match('\*\*\* Submitted as [^*]*?r=([0-9a-f]+)[^ ]* \*\*\*', text)
|
||||
if m is not None and len(m.group(1)) >= 8 and hex.startswith(m.group(1)):
|
||||
return True
|
||||
return False
|
||||
|
Loading…
Reference in New Issue
Block a user