~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/fetch.py

  • Committer: Aaron Bentley
  • Date: 2008-04-30 04:50:30 UTC
  • mto: (3380.3.5 cleanup)
  • mto: This revision was merged to the branch mainline in revision 3392.
  • Revision ID: aaron@aaronbentley.com-20080430045030-vsw4qvpdkh5vp9yd
Update docs

Show diffs side-by-side

added added

removed removed

Lines of Context:
353
353
        for revision_parents in parent_map.itervalues():
354
354
            parents.update(revision_parents)
355
355
        parents.difference_update(revision_root.keys() + [NULL_REVISION])
356
 
        # Limit to revision present in the versionedfile
 
356
        # Limit to revisions present in the versionedfile
357
357
        parents = graph.get_parent_map(parents).keys()
358
358
        for tree in self.iter_rev_trees(parents):
359
359
            root_id = tree.get_root_id()