mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-07-07 20:06:36 +02:00
Bug #677
- _query incorrectly displayed 'No tasks specified.' message when 'No matches' message is more appropriate
This commit is contained in:
parent
2ed73c0700
commit
9efe1d45cc
1 changed files with 1 additions and 1 deletions
|
@ -592,7 +592,7 @@ int handleQuery (std::string& outs)
|
||||||
|
|
||||||
if (tasks.size () == 0)
|
if (tasks.size () == 0)
|
||||||
{
|
{
|
||||||
std::cout << "No tasks specified.\n";
|
std::cout << "No matches.\n";
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue