~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/bundle/bundle_data.py

  • Committer: Jelmer Vernooij
  • Date: 2011-05-08 13:07:11 UTC
  • mto: This revision was merged to the branch mainline in revision 5843.
  • Revision ID: jelmer@samba.org-20110508130711-idrk0wq7aj3d7vq6
Fix more uses of Tree.__iter__

Show diffs side-by-side

added added

removed removed

Lines of Context:
763
763
        paths = []
764
764
        for result in self._new_id.iteritems():
765
765
            paths.append(result)
766
 
        for id in self.base_tree:
 
766
        for id in self.base_tree.all_file_ids():
767
767
            path = self.id2path(id)
768
768
            if path is None:
769
769
                continue