mercurial/wireprotov1server.py
changeset 52640 24ee91ba9aa8
parent 51859 f4733654f144
child 52644 e627cc25b6f3
equal deleted inserted replaced
52639:9db77d46de79 52640:24ee91ba9aa8
   486                 continue
   486                 continue
   487         path = entry[b'URL']
   487         path = entry[b'URL']
   488         repo.ui.debug(b'sending pullbundle "%s"\n' % path)
   488         repo.ui.debug(b'sending pullbundle "%s"\n' % path)
   489         try:
   489         try:
   490             return repo.vfs.open(path)
   490             return repo.vfs.open(path)
   491         except IOError:
   491         except OSError:
   492             repo.ui.debug(b'pullbundle "%s" not accessible\n' % path)
   492             repo.ui.debug(b'pullbundle "%s" not accessible\n' % path)
   493             continue
   493             continue
   494     return None
   494     return None
   495 
   495 
   496 
   496