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 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) |