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:
Paul Beckingham 2009-11-09 18:16:58 -05:00
parent 77dd930574
commit 5b96dbbce8
2 changed files with 3 additions and 1 deletions

View file

@ -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 ------------------------------

View file

@ -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