-directory = DirectoryHasRepository()
-options = [make_option('-t', '--threeway',
- help = 'perform a three-way merge with the current patch',
- action = 'store_true'),
- make_option('-b', '--base',
- help = 'use BASE instead of HEAD applying the patch')]
+args = [argparse.files]
+options = [
+ opt('-t', '--threeway', action = 'store_true',
+ short = 'Perform a three-way merge with the current patch'),
+ opt('-b', '--base', args = [argparse.commit],
+ short = 'Use BASE instead of HEAD applying the patch')]