We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
LoadError:
1 parent 263451e commit 35a186bCopy full SHA for 35a186b
base/errorshow.jl
@@ -92,7 +92,7 @@ function showerror(io::IO, ex, bt; backtrace=true)
92
end
93
94
function showerror(io::IO, ex::LoadError, bt; backtrace=true)
95
- print(io, "LoadError: ")
+ !isa(ex.error, LoadError) && print(io, "LoadError: ")
96
showerror(io, ex.error, bt, backtrace=backtrace)
97
print(io, "\nin expression starting at $(ex.file):$(ex.line)")
98
0 commit comments