From 4c63c55de6fa6e821ded49a9aa4c45007d62447c Mon Sep 17 00:00:00 2001 From: David Medina Date: Sun, 27 May 2012 21:27:14 +0200 Subject: Little fixs --- pygithub3/resources/orgs.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'pygithub3/resources/orgs.py') diff --git a/pygithub3/resources/orgs.py b/pygithub3/resources/orgs.py index 6e2d39b..f0a9804 100644 --- a/pygithub3/resources/orgs.py +++ b/pygithub3/resources/orgs.py @@ -2,6 +2,7 @@ # -*- encoding: utf-8 -*- from .base import Resource +from .users import Plan __all__ = ('Org', ) @@ -9,6 +10,7 @@ __all__ = ('Org', ) class Org(Resource): _dates = ('created_at', ) + _maps = {'plan': Plan} def __str__(self): return '' % getattr(self, 'login', '') -- cgit v1.2.3-59-g8ed1b