/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/git/dir.py

  • Committer: Jelmer Vernooij
  • Date: 2019-06-03 03:10:29 UTC
  • mfrom: (7312 work)
  • mto: This revision was merged to the branch mainline in revision 7318.
  • Revision ID: jelmer@jelmer.uk-20190603031029-b34je03bjulxxdwj
Merge trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
273
273
        for ref in self.get_refs_container().keys():
274
274
            try:
275
275
                branch_name = ref_to_branch_name(ref)
276
 
            except ValueError:
277
 
                continue
278
276
            except UnicodeDecodeError:
279
277
                trace.warning("Ignoring branch %r with unicode error ref", ref)
280
278
                continue
 
279
            except ValueError:
 
280
                continue
281
281
            ret[branch_name] = self.open_branch(ref=ref)
282
282
        return ret
283
283