/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/commit.py

  • Committer: John Arbash Meinel
  • Date: 2006-09-26 20:46:11 UTC
  • mto: This revision was merged to the branch mainline in revision 2044.
  • Revision ID: john@arbash-meinel.com-20060926204611-8621c714eac8c614
CommitBuilder.get_tree => CommitBuilder.revision_tree

Show diffs side-by-side

added added

removed removed

Lines of Context:
332
332
            # and now do the commit locally.
333
333
            self.branch.append_revision(self.rev_id)
334
334
 
335
 
            rev_tree = self.builder.get_tree()
 
335
            rev_tree = self.builder.revision_tree()
336
336
            self.work_tree.set_parent_trees([(self.rev_id, rev_tree)])
337
337
            # now the work tree is up to date with the branch
338
338