From caed94328ff67ce9a0807909461a51334b7d2f57 Mon Sep 17 00:00:00 2001 From: MA Laforge Date: Wed, 25 Jan 2017 11:40:47 -0500 Subject: [PATCH] Fix exception calling backend() in _initialize_backend(). --- src/backends/pyplot.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/backends/pyplot.jl b/src/backends/pyplot.jl index c02a512f..68f45be9 100644 --- a/src/backends/pyplot.jl +++ b/src/backends/pyplot.jl @@ -92,7 +92,7 @@ function _initialize_backend(::PyPlotBackend) kw = Conda._installed_packages_dict() if (!haskey(kw,"qt") || (qt_version=get(kw,"qt",0)[1]!=v"4.8.5")) print("\n If the code has a Segmentation fault error switch to qt v4.8.5 by pasting the following code into julia: \n \n") - add_backend_string(backend()) + print(add_backend_string(PyPlotBackend())) end end end