mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-07-07 20:06:36 +02:00
Feedback: Duration replaced by ISO8601p
This commit is contained in:
parent
dffb1abdf1
commit
dbcd5dbe1d
1 changed files with 2 additions and 2 deletions
|
@ -33,7 +33,7 @@
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <inttypes.h>
|
#include <inttypes.h>
|
||||||
#include <Context.h>
|
#include <Context.h>
|
||||||
#include <Duration.h>
|
#include <ISO8601.h>
|
||||||
#include <main.h>
|
#include <main.h>
|
||||||
#include <text.h>
|
#include <text.h>
|
||||||
#include <util.h>
|
#include <util.h>
|
||||||
|
@ -205,7 +205,7 @@ std::string taskInfoDifferences (
|
||||||
else if (name == "start")
|
else if (name == "start")
|
||||||
{
|
{
|
||||||
out << format (STRING_FEEDBACK_ATT_DEL_DUR, ucFirst (name),
|
out << format (STRING_FEEDBACK_ATT_DEL_DUR, ucFirst (name),
|
||||||
Duration (current_timestamp - last_timestamp).formatPrecise ())
|
ISO8601p (current_timestamp - last_timestamp).format ())
|
||||||
<< "\n";
|
<< "\n";
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue