We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 78d7536 commit 2fd1f34Copy full SHA for 2fd1f34
1 file changed
python_lua_helper/py_lua_helper.py
@@ -49,7 +49,7 @@ def __init__(
49
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 []
+ self._extra_strings = extra_strings or []
53
self.work_dir = work_dir or os.path.dirname(self._lua_config_script)
54
self.temp_dir = temp_dir
55
self.min_lua_version = min_lua_version or "5.1.0"
@@ -240,7 +240,7 @@ def _run_lua_loader(self):
240
if self._post_script:
241
cmd.extend(["-post", self._post_script])
242
# Add extra strings
243
- for extra in self.extra_strings:
+ for extra in self._extra_strings:
244
cmd.extend(["-ext", extra])
245
# Add work directory
246
cmd.extend(["-w", self.work_dir])
0 commit comments