Open GoogleCodeExporter opened 9 years ago
It seems that converter miss some states, making "done" issues "new".
We edited convertor getStatus function adding support for two more statuses:
def _getStatus(status):
mapping = {
"new": "new",
"accepted": "open",
"fixed": "resolved",
"invalid": "invalid",
"duplicate": "duplicate",
"wontfix": "wontfix",
"done": "closed"
}
return mapping.get(status.lower(), "new")
Original comment by oasyc...@gmail.com
on 1 Sep 2015 at 5:05
Original issue reported on code.google.com by
chrsm...@google.com
on 1 Sep 2015 at 5:00