~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

Merge bzr.dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
328
328
        self.from_file = iter(from_file)
329
329
        self._next_line = None
330
330
        
331
 
        self.info = BundleInfo()
 
331
        self.info = BundleInfo08()
332
332
        # We put the actual inventory ids in the footer, so that the patch
333
333
        # is easier to read for humans.
334
334
        # Unfortunately, that means we need to read everything before we
511
511
                # Consume the trailing \n and stop processing
512
512
                self._next().next()
513
513
                break
 
514
 
 
515
 
 
516
class BundleInfo08(BundleInfo):
 
517
    def _update_tree(self, bundle_tree, revision_id):
 
518
        bundle_tree.note_last_changed('', revision_id)
 
519
        BundleInfo._update_tree(self, bundle_tree, revision_id)