mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-06-26 10:54:26 +02:00
Bug Fix - wait date editing
- The "wait" date was not being properly formatted, as are all the other dates, in the "edit" command. The result is that an epoch integer date was rendered, instead of something readable and in the preferred format.
This commit is contained in:
parent
77dd930574
commit
5b96dbbce8
2 changed files with 3 additions and 1 deletions
|
@ -2,6 +2,8 @@
|
|||
------ current release ---------------------------
|
||||
|
||||
1.8.4 ()
|
||||
+ Fixed bug that caused wait: dates to not be properly rendered in a
|
||||
readable and preferred format with the "edit" command.
|
||||
|
||||
------ old releases ------------------------------
|
||||
|
||||
|
|
|
@ -150,7 +150,7 @@ static std::string formatTask (Task task)
|
|||
<< " Due: " << formatDate (task, "due") << std::endl
|
||||
<< " Until: " << formatDate (task, "until") << std::endl
|
||||
<< " Recur: " << task.get ("recur") << std::endl
|
||||
<< " Wait until: " << task.get ("wait") << std::endl
|
||||
<< " Wait until: " << formatDate (task, "wait") << std::endl
|
||||
<< " Parent: " << task.get ("parent") << std::endl
|
||||
<< " Foreground color: " << task.get ("fg") << std::endl
|
||||
<< " Background color: " << task.get ("bg") << std::endl
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue