commit | e121ad558dac2268bba4eb37528ec5a6a2aa507d | [log] [tgz] |
---|---|---|
author | David Pursehouse <david.pursehouse@sonymobile.com> | Tue Apr 05 21:39:29 2016 +0000 |
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | Tue Apr 05 21:39:29 2016 +0000 |
tree | d95410b04f8cad31660248dfb93bf79453606722 | |
parent | 1f0564406ba5aab11b21a83d193485ee6597f213 [diff] | |
parent | d3ddcdbd8aa371993c9b27d1df7edfd22ed038e3 [diff] |
Merge "Ignore clone.bundle on HTTP 501, i.e. Not Implemented"
diff --git a/repo b/repo index 4721174..e5cb890 100755 --- a/repo +++ b/repo
@@ -543,7 +543,7 @@ 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)