Skip to content

Commit b38ddc0

Browse files
committed
doc: update information on output options for CommandLine interfaces
1 parent 9d6f1d8 commit b38ddc0

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

nipype/interfaces/base.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1111,8 +1111,11 @@ class CommandLineInputSpec(BaseInterfaceInputSpec):
11111111
environ = traits.DictStrStr(desc='Environment variables', usedefault=True,
11121112
nohash=True)
11131113
terminal_output = traits.Enum('stream', 'allatonce', 'file', 'none',
1114-
desc='Control terminal output', nohash=True,
1115-
mandatory=True)
1114+
desc=('Control terminal output: `stream` - displays'
1115+
'to terminal immediately, `allatonce` - waits till '
1116+
'command is finished to display output, `file` - writes'
1117+
'output to file, `none` - output is ignored'),
1118+
nohash=True, mandatory=True)
11161119

11171120
class CommandLine(BaseInterface):
11181121
"""Implements functionality to interact with command line programs

0 commit comments

Comments
 (0)