fix missing linebreak in erromessage

This commit is contained in:
gfgtdf 2017-09-14 21:36:21 +02:00 committed by GitHub
parent 79554179e9
commit d5148f2532

View file

@ -872,7 +872,7 @@ bool luaW_pushvariable(lua_State *L, variable_access_const& v)
}
catch (const invalid_variablename_exception&)
{
WRN_LUA << v.get_error_message();
WRN_LUA << v.get_error_message() << "\n";
return false;
}
}