~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: 2006-04-11 08:41:33 UTC
  • mfrom: (1650.1.1 bzr.mbp.info)
  • Revision ID: pqm@pqm.ubuntu.com-20060411084133-90aab62d72535e57
(olaf) much improved bzr info output

Show diffs side-by-side

added added

removed removed

Lines of Context:
750
750
class cmd_info(Command):
751
751
    """Show statistical information about a branch."""
752
752
    takes_args = ['branch?']
 
753
    takes_options = ['verbose']
753
754
    
754
755
    @display_command
755
 
    def run(self, branch=None):
 
756
    def run(self, branch=None, verbose=False):
756
757
        import bzrlib.info
757
 
        bzrlib.info.show_bzrdir_info(bzrdir.BzrDir.open_containing(branch)[0])
 
758
        bzrlib.info.show_bzrdir_info(bzrdir.BzrDir.open_containing(branch)[0],
 
759
                                     verbose=verbose)
758
760
 
759
761
 
760
762
class cmd_remove(Command):