Skip to content
This repository has been archived by the owner on Aug 28, 2023. It is now read-only.

Commit

Permalink
Minimize error text
Browse files Browse the repository at this point in the history
  • Loading branch information
dcramer committed Feb 17, 2016
1 parent a1adec0 commit 781a706
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sentry_jira/jira.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def __init__(self, response_text, status_code=None):
self.json = None
else:
self.json = None
super(JIRAError, self).__init__(response_text)
super(JIRAError, self).__init__(response_text[:128])

@classmethod
def from_response(cls, response):
Expand Down

0 comments on commit 781a706

Please sign in to comment.