mirror of
https://github.com/golang/go
synced 2024-11-21 19:14:44 -07:00
codereview: avoid crash if no config
Fixes #959. R=r CC=golang-dev https://golang.org/cl/1876045
This commit is contained in:
parent
b49561d884
commit
bbf925aa56
@ -1632,7 +1632,11 @@ def RietveldSetup(ui, repo):
|
|||||||
if line.startswith('defaultcc: '):
|
if line.startswith('defaultcc: '):
|
||||||
defaultcc = SplitCommaSpace(line[10:])
|
defaultcc = SplitCommaSpace(line[10:])
|
||||||
except:
|
except:
|
||||||
pass
|
# If there are no options, chances are good this is not
|
||||||
|
# a code review repository; stop now before we foul
|
||||||
|
# things up even worse. Might also be that repo doesn't
|
||||||
|
# even have a root. See issue 959.
|
||||||
|
return
|
||||||
|
|
||||||
try:
|
try:
|
||||||
f = open(repo.root + '/CONTRIBUTORS', 'r')
|
f = open(repo.root + '/CONTRIBUTORS', 'r')
|
||||||
|
Loading…
Reference in New Issue
Block a user