We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 09e24a0 commit bb815a8Copy full SHA for bb815a8
1 file changed
src/commands/CmdUrgency.cpp
@@ -66,9 +66,7 @@ int CmdUrgency::execute(std::string& output) {
66
// Display urgency for the selected tasks.
67
std::stringstream out;
68
for (auto& task : filtered) {
69
- out << format("task {1} urgency {2}", task.identifier(),
70
- Lexer::trim(format(task.urgency(), 6, 3)))
71
- << '\n';
+ out << format("task {1} urgency {2}", task.identifier(), task.urgency()) << '\n';
72
}
73
74
output = out.str();
0 commit comments