浏览代码

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

David Pursehouse 13 年之前
父节点
当前提交
91f011ab0d
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      repo

+ 1 - 1
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)