Skip to content

Commit 411fa77

Browse files
committed
Fix bug
1 parent 7bdfd7c commit 411fa77

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/rendering/show.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ function convert_vl_to_x(v::VLSpec, fileformat)
99
reader = @async read(p, String)
1010
wait(p)
1111
res = fetch(reader)
12-
if p.processes[1].exitcode != 0 || p.processes[2].exitcode != 0
12+
if p.exitcode != 0
1313
throw(ArgumentError("Invalid spec"))
1414
end
1515
return res

0 commit comments

Comments
 (0)