Skip to content

Commit

Permalink
Minor format tweak to unrecognized engine error
Browse files Browse the repository at this point in the history
  • Loading branch information
jrbourbeau committed Nov 21, 2024
1 parent ad5c7ed commit 51c35bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xarray/backends/plugins.py
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ def get_backend(engine: str | type[BackendEntrypoint]) -> BackendEntrypoint:
engines = list_engines()
if engine not in engines:
raise ValueError(
f"unrecognized engine {engine} must be one of your download engines: {list(engines)}"
f"unrecognized engine '{engine}' must be one of your download engines: {list(engines)}. "
"To install additional dependencies, see:\n"
"https://docs.xarray.dev/en/stable/user-guide/io.html \n"
"https://docs.xarray.dev/en/stable/getting-started-guide/installing.html"
Expand Down

0 comments on commit 51c35bc

Please sign in to comment.