/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: Martin Pool
  • Date: 2007-08-20 05:48:40 UTC
  • mfrom: (2727 +trunk)
  • mto: This revision was merged to the branch mainline in revision 2737.
  • Revision ID: mbp@sourcefrog.net-20070820054840-x2ugmd9dc4yodw9o
merge trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
479
479
            if repo_kind == 'info':
480
480
                assert self._info is None
481
481
                self._handle_info(metadata)
482
 
            if ((repo_kind, file_id) != ('file', current_file) and
483
 
                len(pending_file_records) > 0):
484
 
                self._install_mp_records(current_versionedfile,
485
 
                    pending_file_records)
 
482
            if (repo_kind, file_id) != ('file', current_file):
 
483
                if len(pending_file_records) > 0:
 
484
                    self._install_mp_records(current_versionedfile,
 
485
                                             pending_file_records)
486
486
                current_file = None
487
487
                current_versionedfile = None
488
488
                pending_file_records = []