always run milestone date estimation (#71)

This commit is contained in:
Danny Skubak 2019-11-15 14:48:41 -05:00 committed by Daniel Ternyak
parent b824f462f0
commit ceb9f8cbdf
1 changed files with 2 additions and 3 deletions

View File

@ -78,9 +78,8 @@ def create_proposals(count):
) )
db.session.add(c) db.session.add(c)
if stage == ProposalStage.WIP: Milestone.set_v2_date_estimates(p)
Milestone.set_v2_date_estimates(p) db.session.add(p)
db.session.add(p)
db.session.commit() db.session.commit()
print(f'Added {count} LIVE fake proposals') print(f'Added {count} LIVE fake proposals')