Skip to content

Commit

Permalink
Merge pull request #119 from kaushik-work/develop
Browse files Browse the repository at this point in the history
Handle `None` error messages
  • Loading branch information
QuicksilverMachine committed Apr 1, 2019
2 parents bcaee37 + 77f9a9d commit eb73623
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sevenbridges/errors.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def __init__(self, message=None, code=None, status=None, more_info=None):
self.more_info = more_info

def __str__(self):
return self.message
return str(self.message)


class ResourceNotModified(SbgError):
Expand Down

0 comments on commit eb73623

Please sign in to comment.