~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/info.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2007-04-01 06:48:38 UTC
  • mfrom: (2389.1.1 0.15-to-trunk)
  • Revision ID: pqm@pqm.ubuntu.com-20070401064838-34903c7b0d0c8007
merge 0.15 back to dev

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)