From 57b9602b1327d3db0e716c49312ff8e1dc979c74 Mon Sep 17 00:00:00 2001 From: Seth Bromberger Date: Thu, 15 Jun 2017 20:12:26 -0700 Subject: [PATCH] Update output.jl Change `readall` to `readstring` for 0.6- compatibility. --- src/output.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/output.jl b/src/output.jl index 0482f325..814f8884 100644 --- a/src/output.jl +++ b/src/output.jl @@ -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