435
435
_see_also = ['fast-import', 'fast-import-filter']
436
436
takes_args = ['source', 'destination']
438
Option('encoding', type=str, argname='CODEC',
440
def run(self, source, destination, verbose=False):
444
def run(self, source, destination, verbose=False, encoding=None):
441
445
from bzrlib.plugins.fastimport.exporters import fast_export_from
442
fast_export_from(source, destination, 'darcs', verbose)
449
fast_export_from(source, destination, 'darcs', verbose, custom)
445
452
class cmd_fast_export_from_hg(Command):