- Fixed bug that showed the 'due' date, under the heading 'until' date, in the
  info report (thanks to Michael McCann).
This commit is contained in:
Paul Beckingham 2011-06-02 21:39:50 -04:00
parent e19f087931
commit fa36931064
3 changed files with 4 additions and 1 deletions

View file

@ -180,7 +180,7 @@ int CmdInfo::execute (const std::string&, std::string& output)
if (format == "")
format = context.config.get ("dateformat");
std::string until = getDueDate (*task, format);
std::string until = dt.toString (context.config.get ("dateformat"));
view.set (row, 1, until);
}