diff options
author | 2012-06-03 14:43:00 +0200 | |
---|---|---|
committer | 2012-06-03 14:43:00 +0200 | |
commit | 5bd3a9da8a8b3878fd7bfa4b3aced3d85baaa5f0 (patch) | |
tree | 384c25d038f4ea73a37508ec3ef815de172e8d1e /pygithub3/resources/issues.py | |
parent | Merge branch 'services/issues' of https://github.com/alejandrogomez/python-github3 into services/issues (diff) | |
download | python-github3-5bd3a9da8a8b3878fd7bfa4b3aced3d85baaa5f0.tar.xz python-github3-5bd3a9da8a8b3878fd7bfa4b3aced3d85baaa5f0.zip |
WIP on issues
Fix GET params
Config precendence of user/repo
TODO: milestones , fix tests and test it
Diffstat (limited to 'pygithub3/resources/issues.py')
-rw-r--r-- | pygithub3/resources/issues.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pygithub3/resources/issues.py b/pygithub3/resources/issues.py index 69f905a..b2301a6 100644 --- a/pygithub3/resources/issues.py +++ b/pygithub3/resources/issues.py @@ -35,13 +35,13 @@ class Issue(Resource): _dates = ('created_at', 'updated_at', 'closed_at') _maps = { - 'assignee': User, - 'user': User, + 'assignee': User, + 'user': User, 'milestone': Milestone, 'pull_request': PullRequest } - _collection_maps = {'labels': Label} + _collection_maps = {'labels': Label} def __str__(self): return '<Issue (%s)>' % getattr(self, 'number', '') |