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.
2 parents 87e522c + f795402 commit 285fe1aCopy full SHA for 285fe1a
1 file changed
fs_storage/models/fs_storage.py
@@ -239,7 +239,7 @@ def _get_protocols(self) -> list[tuple[str, str]]:
239
try:
240
cls = fsspec.get_filesystem_class(p)
241
protocol.append((p, f"{p} ({cls.__name__})"))
242
- except ImportError as e:
+ except Exception as e:
243
_logger.debug("Cannot load the protocol %s. Reason: %s", p, e)
244
return protocol
245
@@ -273,7 +273,7 @@ def _get_options_protocol(self) -> list[tuple[str, str]]:
273
274
fsspec.get_filesystem_class(p)
275
protocol.append((p, p))
276
277
278
279
0 commit comments