From e3d747921132f93b68d520bc4eef5f046cb630f3 Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Sun, 6 Jul 2014 09:30:00 -0400 Subject: [PATCH] CmdUrgency - Removed unnecessary variable. --- src/commands/CmdUrgency.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/commands/CmdUrgency.cpp b/src/commands/CmdUrgency.cpp index 22e9b0dea..53b19253e 100644 --- a/src/commands/CmdUrgency.cpp +++ b/src/commands/CmdUrgency.cpp @@ -73,9 +73,9 @@ int CmdUrgency::execute (std::string& output) } else { - std::string uuid = task->get ("uuid"); out << format (STRING_CMD_URGENCY_RESULT, - uuid, task->urgency ()) + task->get ("uuid"), + task->urgency ()) << "\n"; } }