TI-12: report command does not find extensions

- Thanks to lumbric.
This commit is contained in:
Paul Beckingham 2016-07-04 07:25:01 -04:00
parent 3904d570ac
commit 61d94c369b
3 changed files with 5 additions and 3 deletions

View file

@ -30,3 +30,4 @@ suggestions:
Matthew Lemon
Rene Vergara
Matthias Rieber
lumbric

View file

@ -6,6 +6,8 @@
- TI-10 The 'total' summands in the month report are not aligned with the
column name
(thanks to Tomas Babej).
- TI-12 report command does not find extensions
(thanks to lumbric).
- TI-14 Warn when new tags are being created
(thanks to Matthias Rieber).
- TI-16 Should handle case where taskwarrior hook is used before timew

View file

@ -448,9 +448,8 @@ void CLI::canonicalizeNames ()
}
// Extensions.
else if (! alreadyFoundCmd &&
(exactMatch ("extension", raw) ||
canonicalize (canonical, "extension", raw)))
else if (exactMatch ("extension", raw) ||
canonicalize (canonical, "extension", raw))
{
a.attribute ("canonical", canonical);
a.tag ("EXT");