Skip to content

Commit

Permalink
Fix calling an attribute
Browse files Browse the repository at this point in the history
  • Loading branch information
eht16 committed Jul 28, 2019
1 parent 1969d3e commit 0095019
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion static_docs/github_client.py
Expand Up @@ -79,7 +79,7 @@ def _log_request(self, response, status_404_expected):
response_json = response.json()
reason = response_json.get('message')
except ValueError:
reason = response.text()
reason = response.text
else:
reason = response.reason

Expand Down

0 comments on commit 0095019

Please sign in to comment.