From ca5562428677586d9247aa5b616bff072e25f980 Mon Sep 17 00:00:00 2001 From: Vladimir Shulyak Date: Sun, 27 May 2018 23:17:30 +0100 Subject: [PATCH] Display task ID when unwaiting task --- src/TDB2.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/TDB2.cpp b/src/TDB2.cpp index b07cee2c7..3bfdfc22e 100644 --- a/src/TDB2.cpp +++ b/src/TDB2.cpp @@ -367,7 +367,7 @@ void TF2::load_gc (Task& task) Context::getContext ().tdb2.pending._dirty = true; if (Context::getContext ().verbose ("unwait")) - Context::getContext ().footnote (format ("Un-waiting task '{1}'", task.get ("description"))); + Context::getContext ().footnote (format ("Un-waiting task {1} '{2}'", task.id, task.get ("description"))); } Context::getContext ().tdb2.pending._tasks.push_back (task);