From d7f869accc6c353c40b3e85ce914e4a0b3df555a Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Thu, 30 Oct 2014 00:31:59 -0400 Subject: [PATCH] CLI - Fixed bug where only ':', not '=' could be used for an attribute filter element. --- src/CLI.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/CLI.cpp b/src/CLI.cpp index 714c06264..cf694ab0a 100644 --- a/src/CLI.cpp +++ b/src/CLI.cpp @@ -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) ||