mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-09-01 18:27:20 +02:00
Bug
- Fixed bug that showed the 'due' date, under the heading 'until' date, in the info report (thanks to Michael McCann).
This commit is contained in:
parent
e19f087931
commit
fa36931064
3 changed files with 4 additions and 1 deletions
1
AUTHORS
1
AUTHORS
|
@ -48,6 +48,7 @@ The following submitted code, packages or analysis, and deserve special thanks:
|
||||||
Stefan Keel
|
Stefan Keel
|
||||||
Christopher J. Pilkington
|
Christopher J. Pilkington
|
||||||
Fumihito Yoshida
|
Fumihito Yoshida
|
||||||
|
Michael McCann
|
||||||
|
|
||||||
Thanks to the following, who submitted detailed bug reports and excellent
|
Thanks to the following, who submitted detailed bug reports and excellent
|
||||||
suggestions:
|
suggestions:
|
||||||
|
|
|
@ -97,6 +97,8 @@
|
||||||
|
|
||||||
# Untracked Bugs, biggest first.
|
# Untracked Bugs, biggest first.
|
||||||
+ Fixed bug that required the '%YAML' prologue in a YAML import.
|
+ Fixed bug that required the '%YAML' prologue in a YAML import.
|
||||||
|
+ Fixed bug that showed the 'due' date, under the heading 'until' date, in the
|
||||||
|
info report (thanks to Michael McCann).
|
||||||
|
|
||||||
------ old releases ------------------------------
|
------ old releases ------------------------------
|
||||||
|
|
||||||
|
|
|
@ -180,7 +180,7 @@ int CmdInfo::execute (const std::string&, std::string& output)
|
||||||
if (format == "")
|
if (format == "")
|
||||||
format = context.config.get ("dateformat");
|
format = context.config.get ("dateformat");
|
||||||
|
|
||||||
std::string until = getDueDate (*task, format);
|
std::string until = dt.toString (context.config.get ("dateformat"));
|
||||||
view.set (row, 1, until);
|
view.set (row, 1, until);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue