~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/bundle/commands.py

  • Committer: Aaron Bentley
  • Date: 2007-06-08 15:03:32 UTC
  • mto: This revision was merged to the branch mainline in revision 2534.
  • Revision ID: abentley@panoramicfeedback.com-20070608150332-jxt1yx9hy7dmhxhv
Update distinct -> lowest, refactor, add ParentsProvider concept

Show diffs side-by-side

added added

removed removed

Lines of Context:
155
155
            target_branch.repository.fetch(base_branch.repository, 
156
156
                                           base_branch.last_revision())
157
157
            walker = target_branch.repository.get_graph_walker()
158
 
            base_revision = walker.unique_common(base_branch.last_revision(),
159
 
                                                 target_revision)
 
158
            base_revision = walker.find_unique_lca(
 
159
                base_branch.last_revision(), target_revision)
160
160
 
161
161
        if output is not None:
162
162
            fileobj = file(output, 'wb')