The history allways considere the datetime object a change, now is converted to string in freeze

remotes/origin/enhancement/email-actions
Jesús Espino 2014-08-14 11:07:41 +02:00
parent ec2a9b17ec
commit 47d280c0da
1 changed files with 1 additions and 1 deletions

View File

@ -211,7 +211,7 @@ def userstory_freezer(us) -> dict:
"owner": us.owner_id,
"status": us.status_id,
"is_closed": us.is_closed,
"finish_date": us.finish_date,
"finish_date": str(us.finish_date),
"order": us.order,
"subject": us.subject,
"description": us.description,