diff options
author | 2012-02-17 07:32:19 +0100 | |
---|---|---|
committer | 2012-02-17 07:32:19 +0100 | |
commit | c99a6c5be7f418726bc9ee233379357c6e5b0294 (patch) | |
tree | ff4f2c9a13e86767850bd536c2298d32d63028d5 /pygithub3/core/client.py | |
parent | Repos collaborators added (diff) | |
download | python-github3-c99a6c5be7f418726bc9ee233379357c6e5b0294.tar.xz python-github3-c99a6c5be7f418726bc9ee233379357c6e5b0294.zip |
Services' renaming: base.Base to base.Service
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 9c9d6c2..a9e9ad4 100644 --- a/pygithub3/core/client.py +++ b/pygithub3/core/client.py @@ -99,7 +99,7 @@ class Client(object): def put(self, request, **kwargs): response = self.request('put', request, **kwargs) # assert response.status_code != '204' - # I don't do an assert. See `services.base.Base._put` comment + # I don't do an assert. See `services.base.Service._put` comment return response def delete(self, request, **kwargs): |