Reputation: 113
In org agenda clock table the file time is coming ** instead of sum of time in all task. How can I fix this?
Update: This issue has been fixed in the latest build or org-mode and emacs
Upvotes: 4
Views: 430
Reputation: 744
This is a bug AFAICS.
To fix it immediately you can fix function org-clocktable-write-default
in your installation by replacing the line
(format (concat "| %s %s | %s%s"
with
(format (concat "| %s %s | %s%s%s"
Or you can wait for the next release of Org.
Upvotes: 3