/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: Breezy landing bot
  • Author(s): Jelmer Vernooij
  • Date: 2018-07-03 03:20:44 UTC
  • mfrom: (7018.3.10 git-fixes)
  • Revision ID: breezy.the.bot@gmail.com-20180703032044-t5a5w5y0tmzrbezc
Port a few more bits of the git plugin to python 3.

Merged from https://code.launchpad.net/~jelmer/brz/git-fixes2/+merge/348803

Show diffs side-by-side

added added

removed removed

Lines of Context:
2177
2177
        dir_id = self._transform.final_file_id(dir_trans_id)
2178
2178
        for child_trans_id in self._all_children(dir_trans_id):
2179
2179
            ordered_ids.append((child_trans_id, dir_id))
 
2180
        path_entries = []
2180
2181
        for entry, trans_id in self._make_inv_entries(ordered_ids):
2181
 
            yield self._final_paths.get_path(trans_id), entry
 
2182
            path_entries.append((self._final_paths.get_path(trans_id), entry))
 
2183
        path_entries.sort()
 
2184
        return path_entries
2182
2185
 
2183
2186
    def list_files(self, include_root=False, from_dir=None, recursive=True):
2184
2187
        """See WorkingTree.list_files."""