~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/commands.py

  • Committer: Martin Pool
  • Date: 2005-04-15 01:31:21 UTC
  • Revision ID: mbp@sourcefrog.net-20050415013121-b18f1be12a735066
- Doc cleanups from Magnus Therning

Show diffs side-by-side

added added

removed removed

Lines of Context:
510
510
def cmd_log(timezone='original', verbose=False):
511
511
    """Show log of this branch.
512
512
 
513
 
    :todo: Options for utc; to show ids; to limit range; etc.
 
513
    TODO: Options for utc; to show ids; to limit range; etc.
514
514
    """
515
515
    Branch('.').write_log(show_timezone=timezone, verbose=verbose)
516
516
 
518
518
def cmd_ls(revision=None, verbose=False):
519
519
    """List files in a tree.
520
520
 
521
 
    :todo: Take a revision or remote path and list that tree instead.
 
521
    TODO: Take a revision or remote path and list that tree instead.
522
522
    """
523
523
    b = Branch('.')
524
524
    if revision == None: