Bug Fix - typo

- Typo in message after prepend has finished.
This commit is contained in:
Paul Beckingham 2009-12-16 22:03:35 -05:00
parent 2cf25b7c35
commit be86c52dc0

View file

@ -1148,7 +1148,7 @@ int handlePrepend (std::string &outs)
context.tdb.unlock ();
if (context.config.get ("echo.command", true))
out << "Appended " << count << " task" << (count == 1 ? "" : "s") << std::endl;
out << "Prepended " << count << " task" << (count == 1 ? "" : "s") << std::endl;
outs = out.str ();
return 0;