~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/fetch.py

  • Committer: Martin Pool
  • Date: 2010-01-29 18:54:10 UTC
  • mto: This revision was merged to the branch mainline in revision 4990.
  • Revision ID: mbp@sourcefrog.net-20100129185410-1fyqzmmbun0hkyss
Fix local variable in Inter1and2Helper

Show diffs side-by-side

added added

removed removed

Lines of Context:
254
254
        root_id_order.sort(key=operator.itemgetter(0))
255
255
        # Create a record stream containing the roots to create.
256
256
        if len(revs) > 100:
257
 
            graph = _get_rich_root_heads_graph(self.source_repo, revs)
 
257
            raph = _get_rich_root_heads_graph(self.source, revs)
258
258
        new_roots_stream = _new_root_data_stream(
259
259
            root_id_order, rev_id_to_root_id, parent_map, self.source, graph)
260
260
        return [('texts', new_roots_stream)]