~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/bundle/common.py

  • Committer: Aaron Bentley
  • Date: 2006-05-30 15:18:12 UTC
  • mto: This revision was merged to the branch mainline in revision 1738.
  • Revision ID: abentley@panoramicfeedback.com-20060530151812-0e3e9b78cc15a804
Rename changesets to revision bundles

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#!/usr/bin/env python
2
2
"""\
3
 
Common entries, like strings, etc, for the changeset reading + writing code.
 
3
Common entries, like strings, etc, for the bundle reading + writing code.
4
4
"""
5
5
 
6
6
import bzrlib
7
7
 
8
 
header_str = 'Bazaar changeset v'
 
8
header_str = 'Bazaar revision bundle v'
9
9
version = (0, 7)
10
10
 
11
11