~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/repofmt/knitrepo.py

  • Committer: Aaron Bentley
  • Date: 2007-06-20 02:39:38 UTC
  • mto: (2520.5.2 bzr.mpbundle)
  • mto: This revision was merged to the branch mainline in revision 2631.
  • Revision ID: aaron.bentley@utoronto.ca-20070620023938-dsrywb9k05tschj7
Hang a create_bundle method off repository

Show diffs side-by-side

added added

removed removed

Lines of Context:
116
116
        
117
117
        This is topologically sorted.
118
118
        """
119
 
        if revision_id is None:
 
119
        if revision_id is None or revision_id == _mod_revision.NULL_REVISION:
120
120
            return [None]
121
121
        revision_id = osutils.safe_revision_id(revision_id)
122
122
        vf = self._get_revision_vf()