~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/branch.py

  • Committer: Robert Collins
  • Date: 2005-10-06 01:30:12 UTC
  • Revision ID: robertc@robertcollins.net-20051006013012-27a91dece71dc318
we do not need revision_trees in commit, parent inventories are sufficient

Show diffs side-by-side

added added

removed removed

Lines of Context:
784
784
        return self.control_weaves.get_weave('ancestry')
785
785
 
786
786
    def get_ancestry(self, revision_id):
787
 
        """Return a list of revision-ids integrated by a revision.
788
 
        """
789
 
        # strip newlines
 
787
        """Return a list of revision-ids integrated by a revision."""
790
788
        if revision_id is None:
791
789
            return [None]
792
790
        w = self._get_ancestry_weave()