aboutsummaryrefslogtreecommitdiffstats
path: root/pygithub3/services/issues/events.py
diff options
context:
space:
mode:
authorDavid Medina <davidmedina9@gmail.com>2012-06-16 13:38:24 +0200
committerDavid Medina <davidmedina9@gmail.com>2012-06-16 13:38:28 +0200
commite383e91973bdbf0b6b77c739249225e3a85b9f24 (patch)
treed963ff0c1f10896f29a32ee90ff97f4ecf7b6266 /pygithub3/services/issues/events.py
parentRemove list_labels from repo service (diff)
downloadpython-github3-e383e91973bdbf0b6b77c739249225e3a85b9f24.tar.xz
python-github3-e383e91973bdbf0b6b77c739249225e3a85b9f24.zip
Tests on services.issues working
Also fix some bugs
Diffstat (limited to 'pygithub3/services/issues/events.py')
-rw-r--r--pygithub3/services/issues/events.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pygithub3/services/issues/events.py b/pygithub3/services/issues/events.py
index 3fd94e3..92bb332 100644
--- a/pygithub3/services/issues/events.py
+++ b/pygithub3/services/issues/events.py
@@ -26,7 +26,7 @@ class Events(Service):
:param str repo: Repo name
:returns: A :doc:`result`
"""
- request = self.request_builder('issues.events.list_by_repo',
+ request = self.make_request('issues.events.list_by_repo',
user=user, repo=repo)
return self._get_result(request)