From 665871096a6fe7bd60f07256fd7906eb8c7baecd Mon Sep 17 00:00:00 2001 From: Vincent A Date: Sat, 2 Nov 2013 12:52:07 +0100 Subject: [PATCH] github: implement edit/set issue status --- modules/github/browser.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/github/browser.py b/modules/github/browser.py index e18f0d0d..6a026922 100644 --- a/modules/github/browser.py +++ b/modules/github/browser.py @@ -101,6 +101,8 @@ class GithubBrowser(BaseBrowser): data['assignee'] = issue.assignee.id if issue.version: data['milestone'] = issue.version.id + if issue.status: + data['state'] = issue.status.name # TODO improve if more statuses are implemented return json_module.dumps(data) def post_comment(self, issue_id, comment):