diff --git a/src/commands/CmdInfo.cpp b/src/commands/CmdInfo.cpp index f413d311a..847b04890 100644 --- a/src/commands/CmdInfo.cpp +++ b/src/commands/CmdInfo.cpp @@ -37,6 +37,7 @@ #include #include #include +#include //////////////////////////////////////////////////////////////////////////////// CmdInfo::CmdInfo () @@ -373,7 +374,7 @@ int CmdInfo::execute (std::string& output) // Task::urgency row = view.addRow (); view.set (row, 0, "Urgency"); - view.set (row, 1, format (task.urgency (), 4, 4)); + view.set (row, 1, Lexer::trimLeft (format (task.urgency (), 4, 4))); // Show any UDAs auto all = task.all ();