mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-06-26 10:54:26 +02:00
CLI
- Fixed bug where only ':', not '=' could be used for an attribute filter element.
This commit is contained in:
parent
1d55abd3c0
commit
d7f869accc
1 changed files with 2 additions and 1 deletions
|
@ -770,7 +770,8 @@ void CLI::desugarAttributes ()
|
|||
if (n.getName (name) &&
|
||||
name.length ())
|
||||
{
|
||||
if (n.skip (':'))
|
||||
if (n.skip (':') ||
|
||||
n.skip ('='))
|
||||
{
|
||||
std::string value;
|
||||
if (n.getQuoted ('"', value) ||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue