From 7dc4877469c5bed7580ff80e9534480e16972b93 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 * lisp/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