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 54c3800 + 4838889 commit cfac179Copy full SHA for cfac179
fileformats/core/datatype.py
@@ -273,7 +273,7 @@ def get_format(mime_name: str) -> ty.Type[DataType]:
273
klass = classified[classifiers] # type: ignore
274
else:
275
raise FormatRecognitionError(
276
- f"Did not find '{class_name}' class in fileformats.{namespace} "
+ f"Did not find '{class_name}' class in {module_path} "
277
f"corresponding to MIME, or MIME-like, type {mime_string}"
278
) from None
279
if not (ty.get_origin(klass) is ty.Union or issubclass(klass, cls)):
0 commit comments