~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

  • Committer: Aaron Bentley
  • Date: 2007-07-11 16:42:37 UTC
  • mto: This revision was merged to the branch mainline in revision 2606.
  • Revision ID: abentley@panoramicfeedback.com-20070711164237-n1x38fz7fttybkqp
Push NULL_REVISION deeper

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))