~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: 2007-02-13 11:48:14 UTC
  • mfrom: (2241.1.20 repoformats)
  • Revision ID: pqm@pqm.ubuntu.com-20070213114814-9606106906ac312f
(mbp) split repository formats into repofmt (r=john)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1186
1186
    """
1187
1187
    takes_args = ['location?']
1188
1188
    takes_options = [
1189
 
                     RegistryOption('format',
1190
 
                            help='Specify a format for this branch. See "bzr '
1191
 
                            'help formats" for details',
1192
 
                            converter=bzrdir.format_registry.make_bzrdir,
1193
 
                            registry=bzrdir.format_registry,
1194
 
                            value_switches=True, title="Branch Format"),
1195
 
                     ]
 
1189
         RegistryOption('format',
 
1190
                help='Specify a format for this branch. '
 
1191
                'See "help formats".',
 
1192
                registry=bzrdir.format_registry,
 
1193
                converter=bzrdir.format_registry.make_bzrdir,
 
1194
                value_switches=True,
 
1195
                title="Branch Format",
 
1196
                ),
 
1197
         ]
1196
1198
    def run(self, location=None, format=None):
1197
1199
        if format is None:
1198
1200
            format = bzrdir.format_registry.make_bzrdir('default')
1243
1245
        cd trunk-checkout
1244
1246
        (add files here)
1245
1247
    """
1246
 
    takes_args = ["location"] 
 
1248
    takes_args = ["location"]
1247
1249
    takes_options = [RegistryOption('format',
1248
1250
                            help='Specify a format for this repository. See'
1249
1251
                                 ' "bzr help formats" for details',