From 9efe1d45cc74c2aaa0276d48eef9f06abb6fcec8 Mon Sep 17 00:00:00 2001 From: Cory Donnelly Date: Sun, 13 Feb 2011 21:12:30 -0500 Subject: [PATCH] Bug #677 - _query incorrectly displayed 'No tasks specified.' message when 'No matches' message is more appropriate --- src/command.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/command.cpp b/src/command.cpp index 5aaa010a2..8812e11c7 100644 --- a/src/command.cpp +++ b/src/command.cpp @@ -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; }