~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/info.py

  • Committer: Martin Pool
  • Date: 2007-04-04 11:40:26 UTC
  • mto: This revision was merged to the branch mainline in revision 2398.
  • Revision ID: mbp@sourcefrog.net-20070404114026-mhlnmyk2x50rgti8
rename 'revision store' to 'repository' in bzr info

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2005, 2006 Canonical Ltd
 
1
# Copyright (C) 2005, 2006, 2007 Canonical Ltd
2
2
3
3
# This program is free software; you can redistribute it and/or modify
4
4
# it under the terms of the GNU General Public License as published by
256
256
    """Show statistics about a repository."""
257
257
    if 'revisions' in stats or 'size' in stats:
258
258
        print
259
 
        print 'Revision store:'
 
259
        print 'Repository:'
260
260
    if 'revisions' in stats:
261
261
        revisions = stats['revisions']
262
262
        print '  %8d revision%s' % (revisions, plural(revisions))