diff options
author | 2011-11-01 22:20:39 +0100 | |
---|---|---|
committer | 2011-11-01 22:20:39 +0100 | |
commit | d57caebf9c3fd5f9ae8611c8de576ec6eb1a070a (patch) | |
tree | 6a8295030ff1736d82abed1def2f3ea092a5c112 /github3/api.py | |
parent | Fix names. Added raw request (diff) | |
download | python-github3-d57caebf9c3fd5f9ae8611c8de576ec6eb1a070a.tar.xz python-github3-d57caebf9c3fd5f9ae8611c8de576ec6eb1a070a.zip |
Fix bug generate_url
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 |