Merge branch '2.4.5' of ssh://git.tasktools.org/tm/task into 2.4.5

This commit is contained in:
Paul Beckingham
2015-06-07 15:34:52 -04:00
6 changed files with 73 additions and 218 deletions

View File

@@ -67,14 +67,14 @@ int CmdUrgency::execute (std::string& output)
if (task.id)
{
out << format (STRING_CMD_URGENCY_RESULT,
task.id, task.urgency ())
task.id, trim (format (task.urgency (), 6, 3)))
<< "\n";
}
else
{
out << format (STRING_CMD_URGENCY_RESULT,
task.get ("uuid"),
task.urgency ())
trim (format (task.urgency (), 6, 3)))
<< "\n";
}
}