/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: Aaron Bentley
  • Date: 2007-01-16 15:10:52 UTC
  • mto: (2230.3.47 branch6)
  • mto: This revision was merged to the branch mainline in revision 2290.
  • Revision ID: abentley@panoramicfeedback.com-20070116151052-nkdqmfvcqyjy6u8b
Fix most fetch tests

Show diffs side-by-side

added added

removed removed

Lines of Context:
321
321
                # now the master has the revision data
322
322
                # 'commit' to the master first so a timeout here causes the local
323
323
                # branch to be out of date
324
 
                self.master_branch.append_revision(self.rev_id)
 
324
                self.master_branch.set_last_revision(self.rev_id)
325
325
 
326
326
            # and now do the commit locally.
327
 
            self.branch.append_revision(self.rev_id)
 
327
            self.branch.set_last_revision(self.rev_id)
328
328
 
329
329
            rev_tree = self.builder.revision_tree()
330
330
            self.work_tree.set_parent_trees([(self.rev_id, rev_tree)])