Merge pull request #67 from davidanthoff/fix-syntax-error

Fix syntax error in Base.display
pull/71/head
Matti Pastell 2016-12-20 22:47:25 +02:00 committed by GitHub
commit 0f66b0cbae
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