We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ad5c7ed commit 6942d68Copy full SHA for 6942d68
xarray/backends/plugins.py
@@ -200,7 +200,7 @@ def get_backend(engine: str | type[BackendEntrypoint]) -> BackendEntrypoint:
200
engines = list_engines()
201
if engine not in engines:
202
raise ValueError(
203
- 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)}. "
204
"To install additional dependencies, see:\n"
205
"https://docs.xarray.dev/en/stable/user-guide/io.html \n"
206
"https://docs.xarray.dev/en/stable/getting-started-guide/installing.html"
0 commit comments