diff options
author | 2011-10-28 20:36:54 +0200 | |
---|---|---|
committer | 2011-10-28 20:37:15 +0200 | |
commit | 27fc6acbd0131f63ab06646e6977daebda85e39e (patch) | |
tree | c3bb71451a70520821500b43724ea00e2c16742f | |
parent | rm gitignore (diff) | |
download | python-github3-27fc6acbd0131f63ab06646e6977daebda85e39e.tar.xz python-github3-27fc6acbd0131f63ab06646e6977daebda85e39e.zip |
Fix/update typo. avatar_url in User
-rw-r--r-- | github3/models.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/github3/models.py b/github3/models.py index ba1ad61..076f2b3 100644 --- a/github3/models.py +++ b/github3/models.py @@ -85,7 +85,7 @@ class User(BaseResource): """Github User object model.""" _strs = [ - 'login','gravatar_url', 'url', 'name', 'company', 'blog', 'location', + 'login','avatar_url', 'url', 'name', 'company', 'blog', 'location', 'email', 'bio', 'html_url'] _ints = ['id', 'public_repos', 'public_gists', 'followers', 'following'] |