Skip to content

Commit

Permalink
temporarily work around problem with rethrow (from #20)
Browse files Browse the repository at this point in the history
  • Loading branch information
stevengj committed Jul 27, 2013
1 parent bc336ad commit b2e6062
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion jlkernel/ipython.jl
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,9 @@ function eventloop(socket)
"msg_type" => "crash" ],
[ "info" => sprint(Base.error_show, e,
catch_backtrace())]))
rethrow(e)
# rethrow(e) # FIXME: seems to hang?
Base.error_show(STDERR, e, catch_backtrace())
exit(1)
end
end
end
Expand Down

0 comments on commit b2e6062

Please sign in to comment.