Skip to content

Commit 1776ed4

Browse files
committed
avoid unsupported operation on windows
1 parent cd5567b commit 1776ed4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nipype/interfaces/base/core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -775,7 +775,7 @@ def run_command(runtime, output=None, timeout=0.01):
775775
shell=True,
776776
cwd=runtime.cwd,
777777
env=env,
778-
close_fds=True,
778+
close_fds=(not sys.platform.startswith('win')),
779779
)
780780

781781
result = {

0 commit comments

Comments
 (0)