~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/info.py

Show shared repository location for bzr info on a repository with a
working tree inside the root.

Show diffs side-by-side

added added

removed removed

Lines of Context:
62
62
        if branch.get_bound_location():
63
63
            print '     bound to branch: %s' % branch.get_bound_location()
64
64
 
65
 
    if repository and (not branch or repository.bzrdir != branch.bzrdir):
 
65
    # No branch? Info was requested on a repository, show it.
 
66
    # If we have a branch with the same location as repository, hide it,
 
67
    # unless that repository is shared.
 
68
    if repository and (not branch or
 
69
                       repository.bzrdir != branch.bzrdir or
 
70
                       repository.is_shared()):
66
71
        if repository.is_shared():
67
72
            print '   shared repository: %s' % (
68
73
                repository.bzrdir.root_transport.base)