diff options
author | 2011-07-24 11:40:47 -0400 | |
---|---|---|
committer | 2011-07-24 11:40:47 -0400 | |
commit | dc8d9e9447e070466c2219d691f993b423c3c8bd (patch) | |
tree | ba19227eed66bbbc84888b2b590a1255552bf221 /github3/api.py | |
parent | is_authenticated (diff) | |
download | python-github3-dc8d9e9447e070466c2219d691f993b423c3c8bd.tar.xz python-github3-dc8d9e9447e070466c2219d691f993b423c3c8bd.zip |
CurrentUser
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 e97a699..f87a7b7 100644 --- a/github3/api.py +++ b/github3/api.py @@ -114,7 +114,7 @@ class Github(GithubCore): def get_me(self): """Get the authenticated user.""" - return self._get_resource(('user'), User) + return self._get_resource(('user'), CurrentUser) |