Browse Source

Fix org-duration-to-minutes call on ox-taskjuggler

* contrib/lisp/ox-taskjuggler.el (org-taskjuggler--build-task): Fix
  typo.

TINYCHANGE
Nicolas Goaziou 7 years ago
parent
commit
601b8e1d52
1 changed files with 1 additions and 1 deletions
  1. 1 1
      contrib/lisp/ox-taskjuggler.el

+ 1 - 1
contrib/lisp/ox-taskjuggler.el

@@ -861,7 +861,7 @@ a unique id will be associated to it."
      (and complete (format "  complete %s\n" complete))
      (and effort
           (format "  effort %s\n"
-                  (let* ((minutes (org-duration-minutes effort))
+                  (let* ((minutes (org-duration-to-minutes effort))
                          (hours (/ minutes 60.0)))
                     (format "%.1fh" hours))))
      (and priority (format "  priority %s\n" priority))