/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 __init__.py

remove --inv-fulltext option

Show diffs side-by-side

added added

removed removed

Lines of Context:
163
163
                    Option('count', type=int,
164
164
                        help="Import this many revisions then exit.",
165
165
                        ),
166
 
                    Option('inv-fulltext', type=int,
167
 
                        help="Inventory fulltext every N revisions.",
168
 
                        ),
169
166
                    Option('inv-cache', type=int,
170
167
                        help="Number of inventories to cache.",
171
168
                        ),
179
176
                     ]
180
177
    aliases = []
181
178
    def run(self, source, verbose=False, info=None, trees=False,
182
 
        checkpoint=10000, count=-1, inv_fulltext=200, inv_cache=10,
 
179
        checkpoint=10000, count=-1, inv_cache=10,
183
180
        experimental=True, import_marks=None, export_marks=None):
184
181
        from bzrlib import bzrdir
185
182
        from bzrlib.plugins.fastimport.processors import generic_processor
189
186
            'trees': trees,
190
187
            'checkpoint': checkpoint,
191
188
            'count': count,
192
 
            'inv-fulltext': inv_fulltext,
193
189
            'inv-cache': inv_cache,
194
190
            'experimental': experimental,
195
191
            'import-marks': import_marks,