diff options
author | Marek Paśnikowski <marek@marekpasnikowski.pl> | 2024-01-14 11:23:24 +0100 |
---|---|---|
committer | Marek Paśnikowski <marek@marekpasnikowski.pl> | 2024-01-14 11:23:24 +0100 |
commit | d71b9378b3c83e8a678f869d0b6c0f4b01e78373 (patch) | |
tree | 2d458ca902d1fd04b6e95b2e9a09c1b6e37211d4 /org-fc-core.el | |
parent | 633092ddc9e736be227c189476666e245951a9f2 (diff) |
Drop precision in created card timestamps
Diffstat (limited to 'org-fc-core.el')
-rw-r--r-- | org-fc-core.el | 2 |
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"))) |