equal
deleted
inserted
replaced
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 |