Tasks are only 'can_start' if they are in the 'new' state

This commit is contained in:
Matthew Jones 2014-03-23 19:56:28 -04:00
parent 3e88894f85
commit 6941d89502

View File

@ -370,7 +370,7 @@ class CommonTask(PrimordialModel):
@property
def can_start(self):
return bool(self.status in ('new', 'waiting'))
return bool(self.status == 'new')
@property
def task_impact(self):