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 21493e1 commit 68337f9Copy full SHA for 68337f9
src/cloudevents/core/v1/exceptions.py
@@ -32,7 +32,7 @@ def __init__(self, errors: dict[str, list[BaseCloudEventException]]) -> None:
32
33
def __str__(self) -> str:
34
error_messages = [
35
- f"{key}: {', '.join(str(value))}" for key, value in self.errors.items()
+ f"{key}: {', '.join(str(e) for e in value)}" for key, value in self.errors.items()
36
]
37
return f"{super().__str__()}: {', '.join(error_messages)}"
38
0 commit comments