~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-29 09:19:50 UTC
  • mfrom: (1185.50.89 bzr-jam-integration)
  • Revision ID: pqm@pqm.ubuntu.com-20060429091950-d5ec09cd6e7c591a
Small help-text fixes

Show diffs side-by-side

added added

removed removed

Lines of Context:
642
642
 
643
643
    --basis is to speed up checking out from remote branches.  When specified, it
644
644
    uses the inventory and file contents from the basis branch in preference to the
645
 
    branch being checked out. [Not implemented yet.]
 
645
    branch being checked out.
646
646
    """
647
647
    takes_args = ['branch_location?', 'to_location?']
648
648
    takes_options = ['revision', # , 'basis']
902
902
    takes_options = [
903
903
                     Option('format', 
904
904
                            help='Create a specific format rather than the'
905
 
                                 ' current default format. Currently this '
906
 
                                 ' option only accepts "metadir"',
 
905
                                 ' current default format. Currently supports:'
 
906
                                 ' metadir, knit, and weave',
907
907
                            type=get_format_type),
908
908
                     ]
909
909
    def run(self, location=None, format=None):