diff options
author | 2012-04-28 23:43:28 +0200 | |
---|---|---|
committer | 2012-04-28 23:43:28 +0200 | |
commit | c24e6efbb59065dcb6655d47bb7b0254f2753bff (patch) | |
tree | 32290846e640555ec4804c53c4aab62cbbe7bd13 /pygithub3/core/client.py | |
parent | :sparkles: Release 0.3 :sparkles: (diff) | |
parent | docstring link typo (diff) | |
download | python-github3-c24e6efbb59065dcb6655d47bb7b0254f2753bff.tar.xz python-github3-c24e6efbb59065dcb6655d47bb7b0254f2753bff.zip |
Merged pull request #4 from natw:services/pull_requests
Diffstat (limited to 'pygithub3/core/client.py')
-rw-r--r-- | pygithub3/core/client.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pygithub3/core/client.py b/pygithub3/core/client.py index ee7c97f..eadb18e 100644 --- a/pygithub3/core/client.py +++ b/pygithub3/core/client.py @@ -81,7 +81,7 @@ class Client(object): def get(self, request, **kwargs): response = self.request('get', request, **kwargs) - assert response.status_code == 200 + # there are valid GET responses that != 200 return response def post(self, request, **kwargs): |