From 429d3eb816d0673326969f50b478f4d622147432 Mon Sep 17 00:00:00 2001 From: Nick Dokos Date: Sat, 28 Nov 2020 10:01:02 -0500 Subject: [PATCH] org-odt-planning: Fix scheduled item output * lis/ox-odt.el (org-odt-planning): Use org-scheduled-string, not org-deadline-string, for scheduled items. See for an ECM. --- lisp/ox-odt.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/ox-odt.el b/lisp/ox-odt.el index 4619f9fcd..ef07acfed 100644 --- a/lisp/ox-odt.el +++ b/lisp/ox-odt.el @@ -2946,7 +2946,7 @@ channel." (when scheduled (concat (format "%s" - "OrgScheduledKeyword" org-deadline-string) + "OrgScheduledKeyword" org-scheduled-string) (org-odt-timestamp scheduled contents info))))))) -- 2.25.4