Skip to content

Commit

Permalink
fix #1932 -- jupyter2: problem with too much output
Browse files Browse the repository at this point in the history
  • Loading branch information
williamstein committed May 7, 2017
1 parent 4b60863 commit ee54584
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/smc-project/jupyter/jupyter.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ class Kernel extends EventEmitter
err = "#{err}"
for cb in @_spawn_cbs
cb?(err)
opts = {detached: true}
opts = {detached: true, stdio:'ignore'}
if @_directory != ''
opts.cwd = @_directory
require('spawnteract').launch(@name, opts).then(success, fail)
Expand Down

0 comments on commit ee54584

Please sign in to comment.