We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4d64f99 commit 01b165dCopy full SHA for 01b165d
nipype/scripts/utils.py
@@ -60,6 +60,8 @@ def add_args_options(arg_parser, interface):
60
inputs = interface.input_spec()
61
for name, spec in sorted(interface.inputs.traits(transient=None).items()):
62
desc = "\n".join(interface._get_trait_desc(inputs, name, spec))[len(name) + 2:]
63
+ # Escape any % signs with a %
64
+ desc = desc.replace('%', '%%')
65
args = {}
66
67
if spec.is_trait_type(traits.Bool):
0 commit comments