mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-08-27 19:17:19 +02:00
Bug #723
- Fixed Bug #723, which displayed a misleading message when the output was truncated to a page.
This commit is contained in:
parent
a1d47e9509
commit
3cccdf722e
3 changed files with 5 additions and 3 deletions
|
@ -677,7 +677,7 @@ int handleCustomReport (const std::string& report, std::string& outs)
|
|||
out << ", " << maxrows << " shown";
|
||||
|
||||
if (maxlines && maxlines < table.rowCount ())
|
||||
out << ", truncated to " << maxlines - table_header << " tasks";
|
||||
out << ", truncated to " << maxlines - table_header << " lines";
|
||||
|
||||
out << std::endl;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue