Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Minor formatting fix #1779

Merged
merged 1 commit into from
Oct 4, 2018
Merged

Minor formatting fix #1779

merged 1 commit into from
Oct 4, 2018

Conversation

JackDunnNZ
Copy link
Contributor

Before this change:

julia> using Plots

julia> ENV["PLOTS_DEFAULT_BACKEND"] = "abc"
"abc"

julia> Plots.pickDefaultBackend()
┌ Warning: You have set PLOTS_DEFAULT_BACKEND=abc but it is not a valid backend package.  Choose from:
│
│   join(sort(_backends), "\n\t") = "glvisualize\n\tgr\n\thdf5\n\tinspectdr\n\tpgfplots\n\tplotly\n\tplotlyjs\n\tpyplot\n\tunicodeplots"
└ @ Plots ~/.julia/dev/Plots/src/backends.jl:152
Plots.GRBackend()

After:

julia> using Plots

julia> ENV["PLOTS_DEFAULT_BACKEND"] = "abc"
"abc"

julia> Plots.pickDefaultBackend()
┌ Warning: You have set PLOTS_DEFAULT_BACKEND=abc but it is not a valid backend package.  Choose from:
│ 	glvisualize
│ 	gr
│ 	hdf5
│ 	inspectdr
│ 	pgfplots
│ 	plotly
│ 	plotlyjs
│ 	pyplot
│ 	unicodeplots
└ @ Plots ~/.julia/dev/Plots/src/backends.jl:152
Plots.GRBackend()

@mkborregaard mkborregaard merged commit e84de56 into JuliaPlots:master Oct 4, 2018
@JackDunnNZ JackDunnNZ deleted the patch-1 branch October 4, 2018 15:30
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants