aboutsummaryrefslogtreecommitdiffstats
path: root/github3/models.py
diff options
context:
space:
mode:
authorDavid Medina <davidmedina9@gmail.com>2011-10-28 20:36:54 +0200
committerDavid Medina <davidmedina9@gmail.com>2011-10-28 20:37:15 +0200
commit27fc6acbd0131f63ab06646e6977daebda85e39e (patch)
treec3bb71451a70520821500b43724ea00e2c16742f /github3/models.py
parentrm gitignore (diff)
downloadpython-github3-27fc6acbd0131f63ab06646e6977daebda85e39e.tar.xz
python-github3-27fc6acbd0131f63ab06646e6977daebda85e39e.zip
Fix/update typo. avatar_url in User
Diffstat (limited to 'github3/models.py')
-rw-r--r--github3/models.py2
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']