~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tree.py

  • Committer: Jelmer Vernooij
  • Date: 2012-02-23 18:48:26 UTC
  • mto: This revision was merged to the branch mainline in revision 6474.
  • Revision ID: jelmer@samba.org-20120223184826-9fsmk02x92ms9kmf
Fix use of file_id.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1345
1345
                            # Reusing a discarded change.
1346
1346
                            old_entry = self._get_entry(self.source, file_id)
1347
1347
                        for child in self.source.iter_children(file_id):
1348
 
                            precise_file_ids.add(child.file_id)
 
1348
                            precise_file_ids.add(child)
1349
1349
                    changed_file_ids.add(result[0])
1350
1350
                    yield result
1351
1351