mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-07-07 20:06:36 +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) &&
|
if (n.getName (name) &&
|
||||||
name.length ())
|
name.length ())
|
||||||
{
|
{
|
||||||
if (n.skip (':'))
|
if (n.skip (':') ||
|
||||||
|
n.skip ('='))
|
||||||
{
|
{
|
||||||
std::string value;
|
std::string value;
|
||||||
if (n.getQuoted ('"', value) ||
|
if (n.getQuoted ('"', value) ||
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue