Skip to content

Commit 05c6644

Browse files
committed
Don't output the time part of the ballot timestamps
- Legacy-Id: 3843
1 parent 76e4c00 commit 05c6644

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

ietf/idrfc/idrfc_wrapper.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -750,13 +750,13 @@ def _init(self):
750750
if pos.pos.slug == "discuss":
751751
p["has_text"] = True
752752
p["discuss_text"] = pos.discuss
753-
p["discuss_date"] = pos.discuss_time
753+
p["discuss_date"] = pos.discuss_time.date()
754754
p["discuss_revision"] = rev
755755

756756
if pos.comment:
757757
p["has_text"] = True
758758
p["comment_text"] = pos.comment
759-
p["comment_date"] = pos.comment_time
759+
p["comment_date"] = pos.comment_time.date()
760760
p["comment_revision"] = rev
761761

762762
positions.append(p)

0 commit comments

Comments
 (0)