Skip to content

Commit 05a539b

Browse files
authored
Merge pull request #225 from JuliaDocs/v/runnerfix
fix: methoderror while reading process output
2 parents bf9643d + 519d5e3 commit 05a539b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/utils/runners.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,6 @@ function readstr_buffer(x::IOStream)
100100
return read(x, String)
101101
end
102102

103-
function readstr_buffer(x::Base.GenericIOBuffer{Array{UInt8,1}})
103+
function readstr_buffer(x::IOBuffer)
104104
return String(take!(x))
105105
end

0 commit comments

Comments
 (0)