mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-07-07 20:06:36 +02:00
CLI
- Placed filter parentheses around only non-trivial filters.
This commit is contained in:
parent
a780bd0193
commit
725682a058
1 changed files with 3 additions and 1 deletions
|
@ -351,9 +351,11 @@ const std::string CLI::getFilter ()
|
||||||
filter += term;
|
filter += term;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
filter = "( " + filter + " )";
|
||||||
}
|
}
|
||||||
|
|
||||||
return "( " + filter + " )";
|
return filter;
|
||||||
}
|
}
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue