~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/info.py

  • Committer: mbp at sourcefrog
  • Date: 2005-03-24 00:26:38 UTC
  • Revision ID: mbp@sourcefrog.net-20050324002638-75eca802ac9caa0c
show_info: Show number of entries in the branch stores

Show diffs side-by-side

added added

removed removed

Lines of Context:
74
74
        lastrev = b.get_revision(history[-1])
75
75
        print '  latest revision: %s' % format_date(lastrev.timestamp,
76
76
                                                    lastrev.timezone)
 
77
 
 
78
    print
 
79
    print 'text store:'
 
80
    print '  %5d file texts' % len(b.text_store)
 
81
 
 
82
    print
 
83
    print 'revision store:'
 
84
    print '  %5d revisions' % len(b.revision_store)
 
85
 
 
86
    print
 
87
    print 'inventory store:'
 
88
    print '  %5d inventories' % len(b.inventory_store)