diff options
Diffstat (limited to '')
| -rw-r--r-- | snekbox/nsjail.py | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/snekbox/nsjail.py b/snekbox/nsjail.py index f64830a..1de7b1e 100644 --- a/snekbox/nsjail.py +++ b/snekbox/nsjail.py @@ -221,9 +221,9 @@ class NsJail:                  *nsjail_args,                  "--",                  self.config.exec_bin.path, -                *self.config.exec_bin.arg, -                # Filter out empty strings at start of py_args +                # Filter out empty strings at start of Python args                  # (causes issues with python cli) +                *iter_lstrip(self.config.exec_bin.arg),                  *iter_lstrip(py_args),              ] | 
