Update output.jl

Change `readall` to `readstring` for 0.6- compatibility.
This commit is contained in:
Seth Bromberger 2017-06-15 20:12:26 -07:00 committed by GitHub
parent c9839dbefa
commit 57b9602b13

View File

@ -220,7 +220,7 @@ if is_installed("FileIO")
FileIO.save(pngfn, s)
# now write from the file
write(io, readall(open(pngfn)))
write(io, readstring(open(pngfn)))
end
end