~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/merge.py

Merge in knit repository use of knits - still not a stable format, but can be experimented with.

Show diffs side-by-side

added added

removed removed

Lines of Context:
749
749
        this_revision_id = self.this_revision_tree.inventory[file_id].revision
750
750
        other_revision_id = \
751
751
            self.other_revision_tree.inventory[file_id].revision
752
 
        this_i = weave.lookup(this_revision_id)
753
 
        other_i = weave.lookup(other_revision_id)
754
 
        plan =  weave.plan_merge(this_i, other_i)
 
752
        plan =  weave.plan_merge(this_revision_id, other_revision_id)
755
753
        return weave.weave_merge(plan, '<<<<<<< TREE\n', 
756
754
                                       '>>>>>>> MERGE-SOURCE\n')
757
755