Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
revant committed May 3, 2017
2 parents 80d0419 + 5654670 commit a938fe3
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion gi2et/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '1.1.0'
__version__ = '1.1.1'
14 changes: 7 additions & 7 deletions gi2et/gi2et/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,13 +75,13 @@ def create_new_task(project, task):
new_task.project = project

new_task.update({
"subject": task["subject"],
"status": task["status"],
"exp_start_date": task["exp_start_date"],
"exp_end_date": task["exp_end_date"],
"description": task["description"],
"github_id": task["github_id"],
"github_number": task["github_number"]
"subject": task["subject"].decode('utf-8'),
"status": task["status"].decode('utf-8'),
"exp_start_date": task["exp_start_date"].decode('utf-8'),
"exp_end_date": task["exp_end_date"].decode('utf-8'),
"description": task["description"].decode('utf-8'),
"github_id": str(task["github_id"]).decode('utf-8'),
"github_number": str(task["github_number"]).decode('utf-8')
})

new_task.flags.ignore_links = True
Expand Down

0 comments on commit a938fe3

Please sign in to comment.