~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/repofmt/pack_repo.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2009-10-21 16:30:17 UTC
  • mfrom: (4759.2.12 2.1-st-concat)
  • Revision ID: pqm@pqm.ubuntu.com-20091021163017-itbys2a178vt5605
(jam, andrew) Allow StaticTuple to hold more types,
        and implement the + operator.

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 "