We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent af1be36 commit 75140a9Copy full SHA for 75140a9
packages/markitdown/src/markitdown/_exceptions.py
@@ -69,7 +69,7 @@ def __init__(
69
message = f"File conversion failed after {len(attempts)} attempts:\n"
70
for attempt in attempts:
71
if attempt.exc_info is None:
72
- message += " - {type(attempt.converter).__name__} provided no execution info."
+ message += f" - {type(attempt.converter).__name__} provided no execution info."
73
else:
74
message += f" - {type(attempt.converter).__name__} threw {attempt.exc_info[0].__name__} with message: {attempt.exc_info[1]}\n"
75
0 commit comments