mirror of
https://github.com/golang/go.git
synced 2025-12-08 06:10:04 +00: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
1 changed files with 1 additions and 1 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue