Skip to content

Commit c253f78

Browse files
authored
Merge pull request #403 from simvue-io/hotfix/fix-posix-in-str
Fix use of posix string instead of string in executor
2 parents 6e376ba + 6615eb7 commit c253f78

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

simvue/executor.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -182,10 +182,10 @@ def callback_function(status_code: int, std_out: str, std_err: str) -> None:
182182
_pos_args.pop(0)
183183

184184
if script:
185-
_command += [script]
185+
_command += [f"{script}"]
186186

187187
if input_file:
188-
_command += [input_file]
188+
_command += [f"{input_file}"]
189189

190190
for arg, value in kwargs.items():
191191
if arg.startswith("__"):

0 commit comments

Comments
 (0)