/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/plugins/multiparent.py

  • Committer: Aaron Bentley
  • Date: 2007-07-19 15:03:23 UTC
  • mto: This revision was merged to the branch mainline in revision 2631.
  • Revision ID: abentley@panoramicfeedback.com-20070719150323-o7nd8emdqg44hj66
Fix option grammar

Show diffs side-by-side

added added

removed removed

Lines of Context:
35
35
    takes_args = ['file?']
36
36
 
37
37
    takes_options = [commands.Option('sync-snapshots',
38
 
                                     help='Snapshots follow source'),
 
38
                                     help='Snapshots follow source.'),
39
39
                     commands.Option('snapshot-interval', type=int,
40
 
                                     help='take snapshots every x revisions'),
 
40
                                     help='Take snapshots every x revisions.'),
41
41
                     commands.Option('outfile', type=unicode,
42
 
                                     help='Write pseudo-knit to this file'),
43
 
                     commands.Option('memory', help='Use memory, not disk'),
44
 
                     commands.Option('extract', help='test extract time'),
45
 
                     commands.Option('single', help='use a single parent'),
46
 
                     commands.Option('verify', help='verify added texts'),
47
 
                     commands.Option('cache', help='Aggresively cache'),
48
 
                     commands.Option('size', help='Aggressive size'),
49
 
                     commands.Option('build', help='Aggressive build'),
 
42
                                     help='Write pseudo-knit to this file.'),
 
43
                     commands.Option('memory', help='Use memory, not disk.'),
 
44
                     commands.Option('extract', help='Test extract time.'),
 
45
                     commands.Option('single', help='Use a single parent.'),
 
46
                     commands.Option('verify', help='Verify added texts.'),
 
47
                     commands.Option('cache', help='Aggresively cache.'),
 
48
                     commands.Option('size', help='Aggressive size.'),
 
49
                     commands.Option('build', help='Aggressive build.'),
50
50
                    ]
51
51
    hidden = True
52
52
 
121
121
    hidden = True
122
122
 
123
123
    takes_options = [
124
 
        commands.Option('lsprof-timed', help='Use lsprof'),
125
 
        commands.Option('parallel', help='extract multiple versions at once'),
126
 
        commands.Option('count', help='Number of cycles to do', type=int),
 
124
        commands.Option('lsprof-timed', help='Use lsprof.'),
 
125
        commands.Option('parallel', help='Extract multiple versions at once.'),
 
126
        commands.Option('count', help='Number of cycles to do.', type=int),
127
127
        ]
128
128
 
129
129
    takes_args = ['filename', 'vfile?']