/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

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

  • Committer: Aaron Bentley
  • Date: 2007-06-21 19:10:28 UTC
  • mto: (2520.5.2 bzr.mpbundle)
  • mto: This revision was merged to the branch mainline in revision 2631.
  • Revision ID: abentley@panoramicfeedback.com-20070621191028-9yy1ye6jneejm1ht
Rename format to 4alpha

Show diffs side-by-side

added added

removed removed

Lines of Context:
216
216
 
217
217
register_lazy('0.8', 'bzrlib.bundle.serializer.v08', 'BundleSerializerV08')
218
218
register_lazy('0.9', 'bzrlib.bundle.serializer.v09', 'BundleSerializerV09')
219
 
register_lazy('1.0alpha', 'bzrlib.bundle.serializer.v10',
220
 
              'BundleSerializerV10')
221
 
register_lazy(None, 'bzrlib.bundle.serializer.v10', 'BundleSerializerV10')
 
219
register_lazy('4alpha', 'bzrlib.bundle.serializer.v4',
 
220
              'BundleSerializerV4')
 
221
register_lazy(None, 'bzrlib.bundle.serializer.v4', 'BundleSerializerV4')
222
222