/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/testament.py

  • Committer: Aaron Bentley
  • Date: 2006-09-26 13:28:39 UTC
  • mto: This revision was merged to the branch mainline in revision 2048.
  • Revision ID: abentley@panoramicfeedback.com-20060926132839-cee32159ab268eeb
Changes from review

Show diffs side-by-side

added added

removed removed

Lines of Context:
211
211
        return l
212
212
 
213
213
 
214
 
class StrictTestament2(StrictTestament):
 
214
class StrictTestament3(StrictTestament):
215
215
    """This testament format is for use as a checksum in bundle format 0.9+
216
216
    
217
217
    It differs from StrictTestament by including data about the tree root.
218
218
    """
219
219
 
220
 
    long_header = 'bazaar-ng testament version 3 strict\n'
221
 
    short_header = 'bazaar-ng testament short form 3 strict\n'
 
220
    long_header = 'bazaar testament version 3 strict\n'
 
221
    short_header = 'bazaar testament short form 3 strict\n'
222
222
    def _get_entries(self):
223
223
        return self.inventory.iter_entries()
224
224