From 30f46ca5e797781af7128c0deb01e82578a38465 Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Sat, 25 Oct 2014 22:32:59 -0400 Subject: [PATCH] CLI - Converted CmdGet from Parser to CLI. --- 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 b1c1cf0dc..71debecbe 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.parser.getWords (); + std::vector words = context.cli.getWords (); if (words.size () == 0) throw std::string (STRING_CMD_GET_NO_DOM);