- Fixed bug #515, which displayed an incorrect message after duplicating a
  non-existent task (thanks to Peter De Poorter).
This commit is contained in:
Paul Beckingham
2010-11-26 11:08:51 -05:00
parent d7de67d242
commit 6ef5650129
3 changed files with 10 additions and 2 deletions

View File

@@ -672,7 +672,8 @@ int handleInfo (std::string& outs)
<< "\n";
}
if (! tasks.size ()) {
if (! tasks.size ())
{
out << "No matches.\n";
rc = 1;
}