~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/check.py

  • Committer: Martin Pool
  • Date: 2005-08-26 02:31:37 UTC
  • Revision ID: mbp@sourcefrog.net-20050826023137-eb4b101cc92f9792
- ignore tags files

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
17
17
 
18
18
import bzrlib.ui
19
 
from bzrlib.trace import note, warning
20
19
 
21
20
def _update_store_entry(obj, obj_id, branch, store_name, store):
22
21
    """This is just a meta-function, which handles both revision entries
228
227
 
229
228
    progress.clear()
230
229
 
231
 
    note('checked %d revisions, %d file texts' % (revcount, len(checked_texts)))
 
230
    print 'checked %d revisions, %d file texts' % (revcount, len(checked_texts))
232
231
    
233
232
    if missing_inventory_sha_cnt:
234
 
        note('%d revisions are missing inventory_sha1' % missing_inventory_sha_cnt)
 
233
        print '%d revisions are missing inventory_sha1' % missing_inventory_sha_cnt
235
234
 
236
235
    if missing_revision_sha_cnt:
237
 
        note('%d parent links are missing revision_sha1' % missing_revision_sha_cnt)
238
 
 
239
 
    if missing_revision_cnt:
240
 
        note('%d revisions are mentioned but not present' % missing_revision_cnt)
 
236
        print '%d parent links are missing revision_sha1' % missing_revision_sha_cnt
241
237
 
242
238
    if missing_revision_cnt:
243
239
        print '%d revisions are mentioned but not present' % missing_revision_cnt
249
245
#        print '  (use "bzr upgrade" to fix them)'
250
246
 
251
247
    if mismatch_inv_id:
252
 
        warning('%d revisions have mismatched inventory ids:' % len(mismatch_inv_id))
 
248
        print '%d revisions have mismatched inventory ids:' % len(mismatch_inv_id)
253
249
        for rev_id in mismatch_inv_id:
254
 
            warning('  %s', rev_id)
 
250
            print '  ', rev_id