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