From 5fa7037bf460d2936c935f19968239d694378f51 Mon Sep 17 00:00:00 2001 From: Stefano Rivera Date: Tue, 24 Apr 2012 08:44:11 +0200 Subject: Add Orgs Members API --- pygithub3/resources/orgs.py | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'pygithub3/resources') diff --git a/pygithub3/resources/orgs.py b/pygithub3/resources/orgs.py index a79395d..6e2d39b 100644 --- a/pygithub3/resources/orgs.py +++ b/pygithub3/resources/orgs.py @@ -18,3 +18,9 @@ class Team(Resource): def __str__(self): return '' % getattr(self, 'name', '') + + +class Member(Resource): + + def __str__(self): + return '' % getattr(self, 'login', '') -- cgit v1.2.3-59-g8ed1b