Skip to content

Commit

Permalink
Fix input files handling
Browse files Browse the repository at this point in the history
  • Loading branch information
ttedeschi authored May 31, 2024
1 parent 1880ea5 commit fedf52f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion handles.py
Original file line number Diff line number Diff line change
Expand Up @@ -475,7 +475,7 @@ def SubmitHandler():
#image = container["image"]
logging.info("Appending all commands together...")
input_files = []
for mount in mounts[-1].split(","):
for mount in (mounts[-1].split(","))[:-1]:
input_files.append(mount.split(":")[0])
local_mounts = ["--bind", ""]
for mount in (mounts[-1].split(","))[:-1]:
Expand Down

0 comments on commit fedf52f

Please sign in to comment.