mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-08-28 13:37:20 +02:00
Bug Fix - tags report using std::cout
- The tags report was writing directly to std::cout, therefore bypassing the header/footer control.
This commit is contained in:
parent
b9a1993692
commit
ae3257b623
1 changed files with 2 additions and 2 deletions
|
@ -175,9 +175,9 @@ std::string handleTags ()
|
|||
}
|
||||
|
||||
// Render a list of tag names from the map.
|
||||
std::cout << optionalBlankLine ();
|
||||
out << optionalBlankLine ();
|
||||
foreach (i, unique)
|
||||
std::cout << i->first << std::endl;
|
||||
out << i->first << std::endl;
|
||||
|
||||
if (unique.size ())
|
||||
out << optionalBlankLine ()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue