~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/commands.py

  • Committer: mbp at sourcefrog
  • Date: 2005-03-28 02:44:07 UTC
  • Revision ID: mbp@sourcefrog.net-20050328024407-46e8473ea201b13e
help for info command

Show diffs side-by-side

added added

removed removed

Lines of Context:
196
196
 
197
197
 
198
198
def cmd_info():
 
199
    """info: Show statistical information for this branch
 
200
 
 
201
usage: bzr info"""
199
202
    import info
200
203
    info.show_info(Branch('.'))        
201
204