/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

  • Committer: John Arbash Meinel
  • Date: 2006-08-15 13:20:18 UTC
  • mfrom: (1924 +trunk)
  • mto: This revision was merged to the branch mainline in revision 1926.
  • Revision ID: john@arbash-meinel.com-20060815132018-b753fd07689ac31a
[merge] bzr.dev 1924

Show diffs side-by-side

added added

removed removed

Lines of Context:
317
317
        self.from_file = iter(from_file)
318
318
        self._next_line = None
319
319
        
320
 
        self.info = BundleInfo()
 
320
        self.info = BundleInfo08()
321
321
        # We put the actual inventory ids in the footer, so that the patch
322
322
        # is easier to read for humans.
323
323
        # Unfortunately, that means we need to read everything before we
500
500
                # Consume the trailing \n and stop processing
501
501
                self._next().next()
502
502
                break
 
503
 
 
504
 
 
505
class BundleInfo08(BundleInfo):
 
506
    def _update_tree(self, bundle_tree, revision_id):
 
507
        bundle_tree.note_last_changed('', revision_id)
 
508
        BundleInfo._update_tree(self, bundle_tree, revision_id)