~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/merge.py

Merge from aaron. Whee, we are synced. Yay. Begone the foul demons of merge conflicts.

Show diffs side-by-side

added added

removed removed

Lines of Context:
492
492
            return
493
493
        if self.other_rev_id is None:
494
494
            return
495
 
        if self.other_rev_id in self.this_branch.get_ancestry(self.this_basis):
 
495
        ancestry = self.this_branch.storage.get_ancestry(self.this_basis)
 
496
        if self.other_rev_id in ancestry:
496
497
            return
497
498
        self.this_branch.working_tree().add_pending_merge(self.other_rev_id)
498
499