CmdTags: Obeys verbose mode

This commit is contained in:
Paul Beckingham 2016-06-11 11:05:25 -04:00
parent 301a01f960
commit c7b1106cc7

View file

@ -73,7 +73,10 @@ int CmdTags (Rules& rules, Database& database)
<< '\n';
}
else
std::cout << "No data found.\n";
{
if (rules.getBoolean ("verbose"))
std::cout << "No data found.\n";
}
return 0;
}