~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/repofmt/groupcompress_repo.py

  • Committer: Patch Queue Manager
  • Date: 2012-07-25 12:52:57 UTC
  • mfrom: (6542.1.1 bzr.dev)
  • Revision ID: pqm@pqm.ubuntu.com-20120725125257-5dudj9222zdwgknp
(jelmer) Suggest running 'bzr reconcile --canonicalize-chks' when hitting
 missing chk root reference errors. (Jelmer Vernooij)

Show diffs side-by-side

added added

removed removed

Lines of Context:
758
758
            expected_chk_roots)
759
759
        missing_chk_roots = expected_chk_roots.difference(present_chk_roots)
760
760
        if missing_chk_roots:
761
 
            problems.append("missing referenced chk root keys: %s"
 
761
            problems.append(
 
762
                "missing referenced chk root keys: %s."
 
763
                "Run 'bzr reconcile --canonicalize-chks' on the affected "
 
764
                "repository."
762
765
                % (sorted(missing_chk_roots),))
763
766
            # Don't bother checking any further.
764
767
            return problems