~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/builtins.py

  • Committer: Aaron Bentley
  • Date: 2007-01-17 16:32:40 UTC
  • mto: This revision was merged to the branch mainline in revision 2240.
  • Revision ID: abentley@panoramicfeedback.com-20070117163240-lj6ttc8m57mdrsj0
Zap trailing whitespace

Show diffs side-by-side

added added

removed removed

Lines of Context:
1079
1079
    """
1080
1080
    takes_args = ['location?']
1081
1081
    takes_options = [
1082
 
                     RegistryOption('format', 
 
1082
                     RegistryOption('format',
1083
1083
                            help='Specify a format for this branch. Current'
1084
1084
                                 ' formats are: default, knit, metaweave and'
1085
1085
                                 ' weave. Default is knit; metaweave and'
1086
1086
                                 ' weave are deprecated',
1087
 
                            registry=bzrdir.format_registry, 
 
1087
                            registry=bzrdir.format_registry,
1088
1088
                            converter=get_format_type,
1089
1089
                            value_switches=True),
1090
1090
                     ]
1139
1139
        (add files here)
1140
1140
    """
1141
1141
    takes_args = ["location"] 
1142
 
    takes_options = [RegistryOption('format', 
 
1142
    takes_options = [RegistryOption('format',
1143
1143
                            help='Specify a format for this repository.'
1144
1144
                                 ' Current formats are: default, knit,'
1145
1145
                                 ' metaweave and weave. Default is knit;'
1146
1146
                                 ' metaweave and weave are deprecated',
1147
 
                            registry=bzrdir.format_registry, 
 
1147
                            registry=bzrdir.format_registry,
1148
1148
                            converter=get_format_type,
1149
1149
                            value_switches=True),
1150
1150
                     Option('trees',
1968
1968
    """
1969
1969
    takes_args = ['url?']
1970
1970
    takes_options = [
1971
 
                    RegistryOption('format', 
 
1971
                    RegistryOption('format',
1972
1972
                        help='Upgrade to a specific format. Current formats'
1973
1973
                             ' are: default, knit, metaweave and weave.'
1974
1974
                             ' Default is knit; metaweave and weave are'
1975
1975
                             ' deprecated',
1976
 
                        registry=bzrdir.format_registry, 
 
1976
                        registry=bzrdir.format_registry,
1977
1977
                        converter=get_format_type,
1978
1978
                        value_switches=True),
1979
1979
                    ]