mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-08-30 02:17:21 +02:00
Filter
- Identifies Filter::subset as source of CLI::dump call, rather than the default label, which was confusing.
This commit is contained in:
parent
06319711f1
commit
dc1e01b1c2
1 changed files with 2 additions and 2 deletions
|
@ -73,7 +73,7 @@ void Filter::subset (const std::vector <Task>& input, std::vector <Task>& output
|
|||
_startCount = (int) input.size ();
|
||||
|
||||
if (context.config.getInteger ("debug.parser") >= 1)
|
||||
context.debug (context.cli.dump ());
|
||||
context.debug (context.cli.dump ("Filter::subset"));
|
||||
|
||||
std::string filterExpr = context.cli.getFilter ();
|
||||
if (filterExpr.length ())
|
||||
|
@ -116,7 +116,7 @@ void Filter::subset (std::vector <Task>& output)
|
|||
context.timer_filter.start ();
|
||||
|
||||
if (context.config.getInteger ("debug.parser") >= 1)
|
||||
context.debug (context.cli.dump ());
|
||||
context.debug (context.cli.dump ("Filter::subset"));
|
||||
|
||||
bool shortcut = false;
|
||||
std::string filterExpr = context.cli.getFilter ();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue