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

  • Committer: Aaron Bentley
  • Date: 2008-04-28 04:00:05 UTC
  • mto: This revision was merged to the branch mainline in revision 3392.
  • Revision ID: aaron@aaronbentley.com-20080428040005-pe3ro8w6qwrsvs2u
Fix normal revision installation

Show diffs side-by-side

added added

removed removed

Lines of Context:
590
590
            return
591
591
        if self._info['serializer'] == self._repository._serializer.format_num:
592
592
            self._repository._add_revision_text(revision_id, text)
593
 
        revision = self._source_serializer.read_revision_from_string(text)
594
 
        self._repository.add_revision(revision.revision_id, revision)
 
593
        else:
 
594
            revision = self._source_serializer.read_revision_from_string(text)
 
595
            self._repository.add_revision(revision.revision_id, revision)
595
596
 
596
597
    def _install_signature(self, revision_id, metadata, text):
597
598
        transaction = self._repository.get_transaction()