/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/transform.py

  • Committer: Jelmer Vernooij
  • Date: 2018-08-21 02:25:27 UTC
  • mfrom: (7077 work)
  • mto: This revision was merged to the branch mainline in revision 7078.
  • Revision ID: jelmer@jelmer.uk-20180821022527-6mxzeeqet5orl0n3
Merge trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1960
1960
            path = self._tree_id_paths[parent_id]
1961
1961
        except KeyError:
1962
1962
            return
1963
 
        entry = next(self._tree.iter_entries_by_dir(
1964
 
                specific_files=[path]))[1]
 
1963
        try:
 
1964
            entry = next(self._tree.iter_entries_by_dir(
 
1965
                    specific_files=[path]))[1]
 
1966
        except StopIteration:
 
1967
            return
1965
1968
        children = getattr(entry, 'children', {})
1966
1969
        for child in children:
1967
1970
            childpath = joinpath(path, child)