Skip to content

Commit

Permalink
Fix no attribute error printing ApiException
Browse files Browse the repository at this point in the history
Fixes docusign#177

Signed-off-by: jesus m. rodriguez <[email protected]>
  • Loading branch information
jmrodri committed Oct 26, 2023
1 parent 9fb2dc1 commit 81597ef
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions docusign_esign/client/api_exception.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,9 @@ def __init__(self, status=None, reason=None, http_resp=None):
self.reason = reason
self.body = None
self.headers = None
self.trace_token = None
self.timestamp = None
self.response = None

def __str__(self):
"""
Expand Down

0 comments on commit 81597ef

Please sign in to comment.