/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/repofmt/pack_repo.py

  • Committer: Andrew Bennetts
  • Date: 2009-10-29 00:25:26 UTC
  • mfrom: (4775 +trunk)
  • mto: This revision was merged to the branch mainline in revision 4778.
  • Revision ID: andrew.bennetts@canonical.com-20091029002526-0d0hb1jqt1qvd5a6
MergeĀ lp:bzr.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2089
2089
                ('signatures', self.repo.signatures),
2090
2090
                ):
2091
2091
            missing = versioned_file.get_missing_compression_parent_keys()
2092
 
            all_missing.update([(prefix,) + tuple(key) for key in missing])
 
2092
            all_missing.update([(prefix,) + key for key in missing])
2093
2093
        if all_missing:
2094
2094
            raise errors.BzrCheckError(
2095
2095
                "Repository %s has missing compression parent(s) %r "