~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/builtins.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2007-06-14 06:07:45 UTC
  • mfrom: (2363.5.26 terse-info)
  • Revision ID: pqm@pqm.ubuntu.com-20070614060745-ywfqw6rm1sgtfx6i
'bzr info' gives terse info by default

Show diffs side-by-side

added added

removed removed

Lines of Context:
1059
1059
    takes_options = ['verbose']
1060
1060
 
1061
1061
    @display_command
1062
 
    def run(self, location=None, verbose=False):
 
1062
    def run(self, location=None, verbose=0):
1063
1063
        from bzrlib.info import show_bzrdir_info
1064
1064
        show_bzrdir_info(bzrdir.BzrDir.open_containing(location)[0],
1065
1065
                         verbose=verbose)