Bug Fix - #316 timesheet report oddly sorted
- Fixed bug #316 which caused the timesheet report to display an oddly sorted list. Mistakenly used 'std::cout << ...' instead of 'out << ...'
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user