diff options
author | 2012-04-28 23:16:54 +0200 | |
---|---|---|
committer | 2012-04-28 23:34:53 +0200 | |
commit | 32ff332812902bc7c2d789ac539faf16b45d11a7 (patch) | |
tree | df429da8875d3232f3d90336730dea77ab683baa /pygithub3 | |
parent | Litle fixs (diff) | |
parent | add `updated_at` to `_dates` in Repo resource (diff) | |
download | python-github3-32ff332812902bc7c2d789ac539faf16b45d11a7.tar.xz python-github3-32ff332812902bc7c2d789ac539faf16b45d11a7.zip |
Merged pull request #7 from alejandrogomez
Diffstat (limited to 'pygithub3')
-rw-r--r-- | pygithub3/resources/repos.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pygithub3/resources/repos.py b/pygithub3/resources/repos.py index c7ec5e8..efd5b13 100644 --- a/pygithub3/resources/repos.py +++ b/pygithub3/resources/repos.py @@ -10,7 +10,7 @@ from .orgs import Org class Repo(Resource): - _dates = ('created_at', 'pushed_at') + _dates = ('created_at', 'updated_at', 'pushed_at') _maps = {'owner': User, 'organization': Org, 'parent': 'self', 'source': 'self'} |