CmdUrgency

- Removed unnecessary variable.
This commit is contained in:
Paul Beckingham 2014-07-06 09:30:00 -04:00
parent 2e27ed0268
commit e3d7479211

View file

@ -73,9 +73,9 @@ int CmdUrgency::execute (std::string& output)
} }
else else
{ {
std::string uuid = task->get ("uuid");
out << format (STRING_CMD_URGENCY_RESULT, out << format (STRING_CMD_URGENCY_RESULT,
uuid, task->urgency ()) task->get ("uuid"),
task->urgency ())
<< "\n"; << "\n";
} }
} }