Add missing new-line after output

refs #7370
This commit is contained in:
Gunnar Beutner 2014-10-20 21:20:02 +02:00
parent 435d18ec5c
commit 6de85912ed
1 changed files with 1 additions and 1 deletions

View File

@ -71,7 +71,7 @@ int VariableGetCommand::Run(const boost::program_options::variables_map& vm, con
}
if (vm.count("current")) {
std::cout << ScriptVariable::Get(ap[0], &Empty);
std::cout << ScriptVariable::Get(ap[0], &Empty) << "\n";
return 0;
}