~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/repofmt/pack_repo.py

  • Committer: Jelmer Vernooij
  • Date: 2009-10-27 21:54:26 UTC
  • mfrom: (4771 +trunk)
  • mto: This revision was merged to the branch mainline in revision 4833.
  • Revision ID: jelmer@samba.org-20091027215426-72164bkd4mq9dsd4
merge bzr.dev.

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 "