diff options
Diffstat (limited to 'github3/api.py')
-rw-r--r-- | github3/api.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/github3/api.py b/github3/api.py index b0a2c96..8b2e6e8 100644 --- a/github3/api.py +++ b/github3/api.py @@ -54,7 +54,7 @@ class GithubCore(object): if is_collection(endpoint): resource = map(str, endpoint) - resource = '/'.join(endpoint) + resource = '/'.join(resource) else: resource = endpoint |