diff options
| author | 2012-03-04 23:45:43 +0100 | |
|---|---|---|
| committer | 2012-03-04 23:45:43 +0100 | |
| commit | b928c9faf8d2b57afdf32cb233ec83bf3d6a7329 (patch) | |
| tree | 8285c7e95adb6755c98f44bae6a6861cc6f03a88 /pygithub3/services/repos/watchers.py | |
| parent | Get repository's commits supported with new result (diff) | |
| download | python-github3-b928c9faf8d2b57afdf32cb233ec83bf3d6a7329.tar.xz python-github3-b928c9faf8d2b57afdf32cb233ec83bf3d6a7329.zip | |
Fix requests with invalid config precedence
Diffstat (limited to 'pygithub3/services/repos/watchers.py')
| -rw-r--r-- | pygithub3/services/repos/watchers.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pygithub3/services/repos/watchers.py b/pygithub3/services/repos/watchers.py index 7bcede5..cdc3624 100644 --- a/pygithub3/services/repos/watchers.py +++ b/pygithub3/services/repos/watchers.py @@ -39,7 +39,7 @@ class Watchers(Service): watchers_service.list_repos('copitux') watchers_service.list_repos() """ - request = self.make_request('repos.watchers.list_repos', user=user) + request = self.request_builder('repos.watchers.list_repos', user=user) return self._get_result(request) def is_watching(self, user=None, repo=None): |
