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 b6ecb3b + fbd07b5 commit 4a97f35Copy full SHA for 4a97f35
fileformats/core/identification.py
@@ -235,7 +235,7 @@ def unwrap(candidate: ty.Type["fileformats.core.FileSet"]) -> None:
235
for candidate in candidates:
236
unwrap(candidate)
237
candidates = tuple(unwrapped)
238
- candidates_str = ", ".join(c.mime_like for c in candidates)
+ candidates_str = ", ".join(to_mime(c) for c in candidates)
239
else:
240
# Use all installed file-set classes if no candidates are provided, sorted
241
# alphabetically to ensure behaviour is consistent between runs
0 commit comments