CmdSummary: Corrected duration formatting

This commit is contained in:
Paul Beckingham 2015-08-15 23:50:55 -04:00
parent 598a2e02fa
commit d285f3a247

View file

@ -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];