mirror of
https://github.com/golang/go.git
synced 2025-12-08 06:10:04 +00:00
codereview: fix for Mercurial 2.9
The branchtags method was removed but we should've been using branchmap all along. http://selenic.com/hg/rev/4274eda143cb LGTM=franciscossouza, r R=golang-codereviews, franciscossouza, r CC=golang-codereviews https://golang.org/cl/57500045
This commit is contained in:
parent
9f0008bb93
commit
881e23d36f
1 changed files with 1 additions and 1 deletions
|
|
@ -2669,7 +2669,7 @@ def RietveldSetup(ui, repo):
|
|||
rpc = None
|
||||
|
||||
global releaseBranch
|
||||
tags = repo.branchtags().keys()
|
||||
tags = repo.branchmap().keys()
|
||||
if 'release-branch.go10' in tags:
|
||||
# NOTE(rsc): This tags.sort is going to get the wrong
|
||||
# answer when comparing release-branch.go9 with
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue