From d285f3a247012000a6d382696e9e61d099f39a30 Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Sat, 15 Aug 2015 23:50:55 -0400 Subject: [PATCH] CmdSummary: Corrected duration formatting --- src/commands/CmdSummary.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/CmdSummary.cpp b/src/commands/CmdSummary.cpp index ec19ae21f..b28990d1d 100644 --- a/src/commands/CmdSummary.cpp +++ b/src/commands/CmdSummary.cpp @@ -170,7 +170,7 @@ int CmdSummary::execute (std::string& output) view.set (row, 1, countPending[i.first]); if (counter[i.first]) - view.set (row, 2, ISO8601p ((int) (sumEntry[i.first] / (double)counter[i.first])).format ()); + view.set (row, 2, ISO8601p ((int) (sumEntry[i.first] / (double)counter[i.first])).formatVague ()); int c = countCompleted[i.first]; int p = countPending[i.first];