Merge "Don't exit with error on HTTP 403 when downloading clone bundle"

This commit is contained in:
David Pursehouse 2013-02-04 10:58:48 +00:00 committed by Gerrit Code Review
commit 91f011ab0d

2
repo
View File

@ -428,7 +428,7 @@ def _DownloadBundle(url, local, quiet):
try: try:
r = urllib.request.urlopen(url) r = urllib.request.urlopen(url)
except urllib.error.HTTPError as e: except urllib.error.HTTPError as e:
if e.code == 404: if e.code in [403, 404]:
return False return False
print('fatal: Cannot get %s' % url, file=sys.stderr) print('fatal: Cannot get %s' % url, file=sys.stderr)
print('fatal: HTTP error %s' % e.code, file=sys.stderr) print('fatal: HTTP error %s' % e.code, file=sys.stderr)