~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/revisiontree.py

  • Committer: Jelmer Vernooij
  • Date: 2012-01-24 03:04:58 UTC
  • mto: This revision was merged to the branch mainline in revision 6464.
  • Revision ID: jelmer@samba.org-20120124030458-aj2syolemmi6knri
Fix more tests.

Show diffs side-by-side

added added

removed removed

Lines of Context:
301
301
            # required to.
302
302
            # Now walk the whole inventory, excluding the already yielded
303
303
            # file ids
 
304
            # FIXME: Support nested trees
304
305
            changed_file_ids = set(changed_file_ids)
305
 
            for relpath, entry in self.target.inventory.iter_entries():
 
306
            for relpath, entry in self.target.root_inventory.iter_entries():
306
307
                if (specific_file_ids is not None
307
308
                    and not entry.file_id in specific_file_ids):
308
309
                    continue