diff options
author | 2012-04-28 00:46:33 +0200 | |
---|---|---|
committer | 2012-04-28 00:54:26 +0200 | |
commit | 97564bccb7d164cd6e55b5651fda8e2cc663d39f (patch) | |
tree | 18d4224040355d9b411ab4882af16c1239232e7f /pygithub3/resources/repos.py | |
parent | `setup.py` modified for finding requirements (diff) | |
download | python-github3-97564bccb7d164cd6e55b5651fda8e2cc663d39f.tar.xz python-github3-97564bccb7d164cd6e55b5651fda8e2cc663d39f.zip |
add `updated_at` to `_dates` in Repo resource
Diffstat (limited to 'pygithub3/resources/repos.py')
-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'} |