From 47d280c0da671f9abb8aec799d0de0b8effc834a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jes=C3=BAs=20Espino?= Date: Thu, 14 Aug 2014 11:07:41 +0200 Subject: [PATCH] The history allways considere the datetime object a change, now is converted to string in freeze --- taiga/projects/history/freeze_impl.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/taiga/projects/history/freeze_impl.py b/taiga/projects/history/freeze_impl.py index 03e469ca..b6163046 100644 --- a/taiga/projects/history/freeze_impl.py +++ b/taiga/projects/history/freeze_impl.py @@ -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,