/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/repofmt/knitrepo.py

  • Committer: Aaron Bentley
  • Date: 2007-06-08 21:48:42 UTC
  • mto: This revision was merged to the branch mainline in revision 2534.
  • Revision ID: abentley@panoramicfeedback.com-20070608214842-t47flt7htr2xz0yh
Rename graph to deprecated_graph

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
 
17
17
from bzrlib import (
18
18
    bzrdir,
 
19
    deprecated_graph,
19
20
    errors,
20
 
    graph,
21
21
    knit,
22
22
    lockable_files,
23
23
    lockdir,
166
166
        :param revision_ids: an iterable of revisions to graph or None for all.
167
167
        :return: a Graph object with the graph reachable from revision_ids.
168
168
        """
169
 
        result = graph.Graph()
 
169
        result = deprecated_graph.Graph()
170
170
        vf = self._get_revision_vf()
171
171
        versions = set(vf.versions())
172
172
        if not revision_ids: