Skip to content

Commit d8907fe

Browse files
fix(python SDKError): Fixed SDKError __str__ (#1480) (#1486)
Co-authored-by: syvokobylka <[email protected]>
1 parent 060b701 commit d8907fe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/looker_sdk/error.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ def __str__(self):
8282
documentation_url: {self.documentation_url}
8383
error_doc_url: {self.error_doc_url}
8484
error details:
85-
{sep.join(self.errors)}
85+
{sep.join(str(error) for error in self.errors)}
8686
"""
8787

8888

0 commit comments

Comments
 (0)