Skip to content

Commit

Permalink
Merge pull request #2803 from MRtrix3/script_logs_no_list_collapse
Browse files Browse the repository at this point in the history
run.command(): Do not hide list inputs
  • Loading branch information
bjeurissen authored May 15, 2024
2 parents bd4d011 + de90863 commit 64ca1e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/mrtrix3/run.py
Original file line number Diff line number Diff line change
Expand Up @@ -473,7 +473,7 @@ def finalise_temp_file(iostream):
if shared.get_scratch_dir():
with shared.lock:
with open(os.path.join(shared.get_scratch_dir(), 'log.txt'), 'a') as outfile:
outfile.write(cmdstring + '\n')
outfile.write(' '.join(cmdsplit) + '\n')

return CommandReturn(return_stdout, return_stderr)

Expand Down

0 comments on commit 64ca1e4

Please sign in to comment.