~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/info.py

(mbp) various integrated fixes for 0.15

Show diffs side-by-side

added added

removed removed

Lines of Context:
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)