- _query incorrectly displayed 'No tasks specified.' message when 'No matches'
message is more appropriate
This commit is contained in:
Cory Donnelly 2011-02-13 21:12:30 -05:00
parent 2ed73c0700
commit 9efe1d45cc

View file

@ -592,7 +592,7 @@ int handleQuery (std::string& outs)
if (tasks.size () == 0)
{
std::cout << "No tasks specified.\n";
std::cout << "No matches.\n";
return 1;
}