diff --git a/ChangeLog b/ChangeLog index 8b982caf1..00526bcb2 100644 --- a/ChangeLog +++ b/ChangeLog @@ -7,6 +7,8 @@ + The 'delete' command is now aliased to 'rm' (thanks to Ivo Jimenez). + Fixed bug that showed a calendar for the year 2037 when 'task calendar due' was run, and there are no tasks with due dates. + + Fixed bug #316 which caused the timesheet report to display an oddly sorted + list. ------ old releases ------------------------------ diff --git a/src/report.cpp b/src/report.cpp index 084cd4806..c6ae2ea0b 100644 --- a/src/report.cpp +++ b/src/report.cpp @@ -1168,9 +1168,9 @@ int handleReportTimesheet (std::string &outs) + endString.toString (context.config.get ("dateformat", "m/d/Y")); Color bold (Color::nocolor, Color::nocolor, false, true, false); - std::cout << std::endl - << (color ? bold.colorize (title) : title) - << std::endl; + out << std::endl + << (color ? bold.colorize (title) : title) + << std::endl; // Render the completed table. Table completed;