From 97564bccb7d164cd6e55b5651fda8e2cc663d39f Mon Sep 17 00:00:00 2001 From: Alejandro Gómez Date: Sat, 28 Apr 2012 00:46:33 +0200 Subject: add `updated_at` to `_dates` in Repo resource --- pygithub3/resources/repos.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'pygithub3/resources/repos.py') 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'} -- cgit v1.2.3-59-g8ed1b