~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/repository.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2009-08-31 00:27:39 UTC
  • mfrom: (4664.1.1 integration)
  • Revision ID: pqm@pqm.ubuntu.com-20090831002739-vd6487doda1b2k9h
(robertc) Fix bug 416732 by not adding root directories to expected
        items when checking non rich root repositories. (Robert Collins)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1222
1222
                    for record in getattr(self, kind).check(keys=keys[kind]):
1223
1223
                        if record.storage_kind == 'absent':
1224
1224
                            checker._report_items.append(
1225
 
                                'Missing inventory {%s}' % (record.key,))
 
1225
                                'Missing %s {%s}' % (kind, record.key,))
1226
1226
                        else:
1227
1227
                            last_object = self._check_record(kind, record,
1228
1228
                                checker, last_object, current_keys[(kind,) + record.key])