From f6f89ac333f2a4c94550c1d4347b369dcb9a6584 Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Wed, 17 Jun 2015 04:16:19 -0400 Subject: [PATCH] CmdGet: Converted form CLI to CLI2 --- src/commands/CmdGet.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/CmdGet.cpp b/src/commands/CmdGet.cpp index 880a7f7aa..7868cb045 100644 --- a/src/commands/CmdGet.cpp +++ b/src/commands/CmdGet.cpp @@ -49,7 +49,7 @@ int CmdGet::execute (std::string& output) { // Obtain the arguments from the description. That way, things like '--' // have already been handled. - std::vector words = context.cli.getWords (); + std::vector words = context.cli2.getWords (false); if (words.size () == 0) throw std::string (STRING_CMD_GET_NO_DOM);