We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e3f52ea commit fecaa6aCopy full SHA for fecaa6a
xarray/backends/api.py
@@ -859,10 +859,9 @@ def open_mfdataset(
859
paths = [fs.get_mapper(path) for path in paths]
860
elif is_remote_uri(paths):
861
raise ValueError(
862
- "cannot do wild-card matching for paths that are remote URLs: "
863
- "{!r}. Instead, supply paths as an explicit list of strings.".format(
864
- paths
865
- )
+ "cannot do wild-card matching for paths that are remote URLs "
+ f"unless engine='zarr' is specified. Got paths: {paths}. "
+ "Instead, supply paths as an explicit list of strings."
866
)
867
else:
868
paths = sorted(glob(_normalize_path(paths)))
0 commit comments