瀏覽代碼

Merge "Ignore clone.bundle on HTTP 501, i.e. Not Implemented"

David Pursehouse 9 年之前
父節點
當前提交
e121ad558d
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      repo

+ 1 - 1
repo

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