astyle formatting

[ci skip]
This commit is contained in:
Daniel Marjamäki 2020-04-05 10:57:51 +02:00
parent 60f9fefcd4
commit 189cf29597
1 changed files with 6 additions and 6 deletions

View File

@ -138,8 +138,7 @@ namespace {
return "Loading " + fileName +" failed. python must not be an array."; return "Loading " + fileName +" failed. python must not be an array.";
} }
python = obj["python"].get<std::string>(); python = obj["python"].get<std::string>();
} } else {
else{
python = ""; python = "";
} }
@ -150,7 +149,8 @@ namespace {
static std::string executeAddon(const AddonInfo &addonInfo, static std::string executeAddon(const AddonInfo &addonInfo,
const std::string &defaultPythonExe, const std::string &defaultPythonExe,
const std::string &dumpFile) { const std::string &dumpFile)
{
std::string pythonExe = (addonInfo.python != "") ? addonInfo.python : defaultPythonExe; std::string pythonExe = (addonInfo.python != "") ? addonInfo.python : defaultPythonExe;