/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to breezy/controldir.py

  • Committer: Jelmer Vernooij
  • Date: 2019-06-27 00:17:42 UTC
  • mto: This revision was merged to the branch mainline in revision 7361.
  • Revision ID: jelmer@jelmer.uk-20190627001742-1ievd22uwxst8230
Ignore UnknownFormatError in ControlDir.find_controldirs

Show diffs side-by-side

added added

removed removed

Lines of Context:
561
561
            recurse = True
562
562
            try:
563
563
                controldir = klass.open_from_transport(current_transport)
564
 
            except (errors.NotBranchError, errors.PermissionDenied):
 
564
            except (errors.NotBranchError, errors.PermissionDenied,
 
565
                    errors.UnknownFormatError):
565
566
                pass
566
567
            else:
567
568
                recurse, value = evaluate(controldir)