Skip to content

Commit

Permalink
don't close_fds on Windows
Browse files Browse the repository at this point in the history
straggler missed in 14b007d

closes ipython#3244 (again)
  • Loading branch information
minrk committed Aug 14, 2013
1 parent 6e66741 commit 8f4c3ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion IPython/kernel/connect.py
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,7 @@ def connect_qtconsole(connection_file=None, argv=None, profile=None):
])

return Popen([sys.executable, '-c', cmd, '--existing', cf] + argv,
stdout=PIPE, stderr=PIPE, close_fds=True,
stdout=PIPE, stderr=PIPE, close_fds=(sys.platform != 'win32'),
)


Expand Down

0 comments on commit 8f4c3ce

Please sign in to comment.