mirror of
https://github.com/GothenburgBitFactory/timewarrior.git
synced 2025-07-07 20:06:39 +02:00
CmdTags: Obeys verbose mode
This commit is contained in:
parent
301a01f960
commit
c7b1106cc7
1 changed files with 4 additions and 1 deletions
|
@ -73,7 +73,10 @@ int CmdTags (Rules& rules, Database& database)
|
||||||
<< '\n';
|
<< '\n';
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
std::cout << "No data found.\n";
|
{
|
||||||
|
if (rules.getBoolean ("verbose"))
|
||||||
|
std::cout << "No data found.\n";
|
||||||
|
}
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue