Fix syntax error in Base.display

pull/67/head
David Anthoff 2016-12-20 12:21:50 -08:00
parent d8ba7316fe
commit 3542374d92
1 changed files with 1 additions and 1 deletions

View File

@ -36,7 +36,7 @@ function Base.display(report::Report, m::MIME"image/svg+xml", p::Plot)
draw(SVGJS(full_name, w, h), p)
elseif format == ".tex"
draw(PGF(full_name, w, h, true ), p)
else:
else
warn("Can't save figure. Unsupported format")
end
end