~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/repofmt/knitrepo.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2007-09-25 04:16:14 UTC
  • mfrom: (2850.3.2 pack-support)
  • Revision ID: pqm@pqm.ubuntu.com-20070925041614-j2r43hi8rhw9ci4k
(robertc) Move more weave orientated code out of Repository to weaverepo.py. (Robert Collins)

Show diffs side-by-side

added added

removed removed

Lines of Context:
129
129
            raise errors.NoSuchRevision(self, revision_id)
130
130
 
131
131
    @needs_read_lock
132
 
    def get_revision(self, revision_id):
133
 
        """Return the Revision object for a named revision"""
134
 
        revision_id = osutils.safe_revision_id(revision_id)
135
 
        return self.get_revision_reconcile(revision_id)
136
 
 
137
 
    @needs_read_lock
138
132
    def get_revision_graph(self, revision_id=None):
139
133
        """Return a dictionary containing the revision graph.
140
134