We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a7008a4 commit a95ccefCopy full SHA for a95ccef
1 file changed
python_lua_helper/py_lua_helper.py
@@ -46,7 +46,7 @@ def __init__(
46
lua_args: Additional arguments to pass to Lua script (will be placed to loader.args)
47
"""
48
self._lua_config_script = os.path.abspath(lua_config_script)
49
- self.export_vars = export_vars or []
+ self._export_vars = export_vars or []
50
self.pre_script = pre_script
51
self.post_script = post_script
52
self.extra_strings = extra_strings or []
@@ -231,7 +231,7 @@ def _run_lua_loader(self):
231
# Add configuration parameters
232
cmd.extend(["-c", self._lua_config_script])
233
# Add export variables
234
- for var in self.export_vars:
+ for var in self._export_vars:
235
cmd.extend(["-e", var])
236
# Add pre script
237
if self.pre_script:
0 commit comments