Return incomplete not None for review section status

This commit is contained in:
George Drummond
2019-02-01 09:50:45 -05:00
parent ab519aa4df
commit 92d93c5553
2 changed files with 3 additions and 3 deletions

View File

@@ -109,8 +109,8 @@ class TaskOrders(object):
return "complete"
elif passed and failed:
return "draft"
else:
return "incomplete"
return "incomplete"
@classmethod
def all_sections_complete(cls, task_order):