From 05c664423c8118a939fe24302ab47cc0b1de1375 Mon Sep 17 00:00:00 2001 From: Ole Laursen Date: Fri, 20 Jan 2012 16:38:31 +0000 Subject: [PATCH] Don't output the time part of the ballot timestamps - Legacy-Id: 3843 --- ietf/idrfc/idrfc_wrapper.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ietf/idrfc/idrfc_wrapper.py b/ietf/idrfc/idrfc_wrapper.py index 0a1cda69b..57efaba6c 100644 --- a/ietf/idrfc/idrfc_wrapper.py +++ b/ietf/idrfc/idrfc_wrapper.py @@ -750,13 +750,13 @@ class BallotWrapper: if pos.pos.slug == "discuss": p["has_text"] = True p["discuss_text"] = pos.discuss - p["discuss_date"] = pos.discuss_time + p["discuss_date"] = pos.discuss_time.date() p["discuss_revision"] = rev if pos.comment: p["has_text"] = True p["comment_text"] = pos.comment - p["comment_date"] = pos.comment_time + p["comment_date"] = pos.comment_time.date() p["comment_revision"] = rev positions.append(p)