~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/bundle/serializer/__init__.py

  • Committer: Vincent Ladeuil
  • Date: 2007-07-15 11:24:18 UTC
  • mfrom: (2617 +trunk)
  • mto: This revision was merged to the branch mainline in revision 2646.
  • Revision ID: v.ladeuil+lp@free.fr-20070715112418-9nn4n6esxv60ny4b
merge bzr.dev@1617

Show diffs side-by-side

added added

removed removed

Lines of Context:
118
118
         applying the bundle.
119
119
    :param out: Output file.
120
120
    """
121
 
    if base_revision_id is NULL_REVISION:
122
 
        base_revision_id = None
123
121
    revision_ids = set(repository.get_ancestry(revision_id, topo_sorted=False))
124
122
    revision_ids.difference_update(repository.get_ancestry(base_revision_id,
125
123
                                   topo_sorted=False))