fix for error message change

This commit is contained in:
Mike J Innes 2017-02-23 16:58:17 +00:00
parent 616425554d
commit 21775f8c89

View File

@ -94,7 +94,7 @@ using Juno
Juno.errmsg(e::mx.MXError) = e.msg
function errnode(e::mx.MXError)
m = match(r"Error in (\w+)", e.msg)
m = match(r"Error in operator (\w+)", e.msg)
m == nothing && return
Symbol(m.captures[1])
end