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

Fix strict testaments, as_sha1

Show diffs side-by-side

added added

removed removed

Lines of Context:
84
84
        to_file.write(text_line+'\n')
85
85
 
86
86
 
87
 
class BundleSerializerV07(BundleSerializer):
 
87
class BundleSerializerV08(BundleSerializer):
88
88
    def read(self, f):
89
89
        """Read the rest of the bundles from the supplied file.
90
90
 
123
123
        """Write the header for the changes"""
124
124
        f = self.to_file
125
125
        f.write(BUNDLE_HEADER)
126
 
        f.write('0.7\n')
 
126
        f.write('0.8\n')
127
127
        f.write('#\n')
128
128
 
129
129
    def _write(self, key, value, indent=1):