Skip to content

Commit

Permalink
Fix #9317
Browse files Browse the repository at this point in the history
  • Loading branch information
ivarne committed Dec 12, 2014
1 parent cab01d2 commit f140ff2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion base/replutil.jl
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ function showerror(io::IO, e::MethodError)
vec_args = []
hasrows = false
for arg in e.args
isrow = isa(arg,AbstractArray) && ndims(arg)==2 && size(arg,1)==1
isrow = isa(arg,Array) && ndims(arg)==2 && size(arg,1)==1
hasrows |= isrow
push!(vec_args, isrow ? vec(arg) : arg)
end
Expand Down

0 comments on commit f140ff2

Please sign in to comment.