1
0
mirror of https://github.com/golang/go synced 2024-11-21 13:44:45 -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:
Russ Cox 2010-07-26 17:33:50 -07:00
parent b49561d884
commit bbf925aa56

View File

@ -1632,7 +1632,11 @@ def RietveldSetup(ui, repo):
if line.startswith('defaultcc: '):
defaultcc = SplitCommaSpace(line[10:])
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:
f = open(repo.root + '/CONTRIBUTORS', 'r')