~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/info.py

Merge bzr.dev.

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))
273
273
def show_bzrdir_info(a_bzrdir, verbose=False):
274
274
    """Output to stdout the 'info' for a_bzrdir."""
275
275
    try:
276
 
        working = a_bzrdir.open_workingtree()
 
276
        working = a_bzrdir.open_workingtree(
 
277
            recommend_upgrade=False)
277
278
        working.lock_read()
278
279
        try:
279
280
            show_tree_info(working, verbose)