Skip to content

Commit 6109e82

Browse files
committed
Fix no attribute error printing ApiException
Fixes #177 Signed-off-by: jesus m. rodriguez <[email protected]>
1 parent d6c4ff4 commit 6109e82

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

docusign_esign/client/api_exception.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,9 @@ def __init__(self, status=None, reason=None, http_resp=None):
2929
self.reason = reason
3030
self.body = None
3131
self.headers = None
32+
self.trace_token = None
33+
self.timestamp = None
34+
self.response = None
3235

3336
def __str__(self):
3437
"""

0 commit comments

Comments
 (0)