##// END OF EJS Templates
close fds when spawning qtconsole subprocess...
MinRK -
Show More
@@ -304,7 +304,9 b' def connect_qtconsole(connection_file=None, argv=None, profile=None):'
304 304 "qtconsoleapp.main()"
305 305 ])
306 306
307 return Popen([sys.executable, '-c', cmd, '--existing', cf] + argv, stdout=PIPE, stderr=PIPE)
307 return Popen([sys.executable, '-c', cmd, '--existing', cf] + argv,
308 stdout=PIPE, stderr=PIPE, close_fds=True,
309 )
308 310
309 311
310 312 def tunnel_to_kernel(connection_info, sshserver, sshkey=None):
General Comments 0
You need to be logged in to leave comments. Login now