~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-03-27 17:24:56 UTC
  • mfrom: (1624.1.1 integration)
  • Revision ID: pqm@pqm.ubuntu.com-20060327172456-dd0573475e606596
Trivial ui change to make knits clearly experimental.

Show diffs side-by-side

added added

removed removed

Lines of Context:
880
880
    takes_args = ["location"] 
881
881
    takes_options = [Option('format', 
882
882
                            help='Use a specific format rather than the'
883
 
                            ' current default format. Currently this '
884
 
                            ' option only accepts "metadir" and "knit"',
 
883
                            ' current default format. Currently this'
 
884
                            ' option only accepts "metadir" and "knit"'
 
885
                            ' WARNING: the knit format is currently unstable'
 
886
                            ' and only for experimental use.',
885
887
                            type=get_format_type)]
886
888
    aliases = ["init-repo"]
887
889
    def run(self, location, format=None):
1554
1556
    takes_options = [
1555
1557
                     Option('format', 
1556
1558
                            help='Upgrade to a specific format rather than the'
1557
 
                                 ' current default format. Currently this '
1558
 
                                 ' option only accepts =metadir',
 
1559
                                 ' current default format. Currently this'
 
1560
                                 ' option only accepts -metadir and -knit'
 
1561
                                 ' WARNING: the knit format is currently'
 
1562
                                 ' unstable and only for experimental use.',
1559
1563
                            type=get_format_type),
1560
1564
                    ]
1561
1565