From f17187a4b64537c01d809d8efff068c2b038d699 Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Wed, 12 Aug 2015 08:22:23 -0400 Subject: [PATCH] CmdSummary: Duration replaced by ISO8601p --- src/commands/CmdSummary.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/commands/CmdSummary.cpp b/src/commands/CmdSummary.cpp index bfeb657db..ec19ae21f 100644 --- a/src/commands/CmdSummary.cpp +++ b/src/commands/CmdSummary.cpp @@ -31,7 +31,7 @@ #include #include #include -#include +#include #include #include #include @@ -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, Duration ((int) (sumEntry[i.first] / (double)counter[i.first])).format ()); + view.set (row, 2, ISO8601p ((int) (sumEntry[i.first] / (double)counter[i.first])).format ()); int c = countCompleted[i.first]; int p = countPending[i.first];