summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarek Paśnikowski <marek@marekpasnikowski.pl>2024-01-14 11:23:24 +0100
committerMarek Paśnikowski <marek@marekpasnikowski.pl>2024-01-14 11:23:24 +0100
commitd71b9378b3c83e8a678f869d0b6c0f4b01e78373 (patch)
tree2d458ca902d1fd04b6e95b2e9a09c1b6e37211d4
parent633092ddc9e736be227c189476666e245951a9f2 (diff)
Drop precision in created card timestamps
-rw-r--r--org-fc-core.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/org-fc-core.el b/org-fc-core.el
index 1ed2508..8a61303 100644
--- a/org-fc-core.el
+++ b/org-fc-core.el
@@ -154,7 +154,7 @@ Does not apply to cloze single and cloze enumeration cards."
(let ((seconds (* interval 60 60 24))
(now (time-to-seconds)))
(format-time-string
- "%FT%TZ"
+ "%FT"
(seconds-to-time (+ now seconds))
"UTC0")))