aboutsummaryrefslogtreecommitdiffstats
path: root/pygithub3/resources/repos.py
diff options
context:
space:
mode:
authorDavid Medina <davidmedina9@gmail.com>2012-05-27 21:39:03 +0200
committerDavid Medina <davidmedina9@gmail.com>2012-06-03 14:47:23 +0200
commit9dedea7efc93c542d8088435fd45891626bc791b (patch)
treefdad343826fd3eeeb9de2fa75f5bf90b085ea92e /pygithub3/resources/repos.py
parentMerge pull request #11 from dsc/patch-1 (diff)
parentAuthors updated (diff)
downloadpython-github3-9dedea7efc93c542d8088435fd45891626bc791b.tar.xz
python-github3-9dedea7efc93c542d8088435fd45891626bc791b.zip
Merge #5 'services/orgs'
Diffstat (limited to 'pygithub3/resources/repos.py')
-rw-r--r--pygithub3/resources/repos.py7
1 files changed, 1 insertions, 6 deletions
diff --git a/pygithub3/resources/repos.py b/pygithub3/resources/repos.py
index efd5b13..85e24c7 100644
--- a/pygithub3/resources/repos.py
+++ b/pygithub3/resources/repos.py
@@ -18,12 +18,6 @@ class Repo(Resource):
return '<Repo (%s)>' % getattr(self, 'name', '')
-class Team(Resource):
-
- def __str__(self):
- return '<Team (%s)>' % getattr(self, 'name', '')
-
-
class Author(Resource):
_dates = ('date')
@@ -115,6 +109,7 @@ class Download(Resource):
'Policy': self.policy, 'Signature': self.signature,
'Content-Type': self.mime_type})
+
class Hook(Resource):
_dates = ('created_at', 'pushed_at')