Add another missing new-line

refs #7370
This commit is contained in:
Gunnar Beutner 2014-10-20 21:43:50 +02:00
parent 6e17eadf8f
commit 934234926e
1 changed files with 1 additions and 1 deletions

View File

@ -96,7 +96,7 @@ int VariableGetCommand::Run(const boost::program_options::variables_map& vm, con
Dictionary::Ptr variable = JsonDeserialize(message);
if (variable->Get("name") == ap[0]) {
std::cout << variable->Get("value");
std::cout << variable->Get("value") << "\n";
break;
}
}