Mentions légales du service

Skip to content
Snippets Groups Projects
Commit 53a3ba6c authored by MALANDAIN Gregoire's avatar MALANDAIN Gregoire
Browse files

minor changes

parent 6cfbe583
No related branches found
No related tags found
No related merge requests found
......@@ -64,7 +64,8 @@ def mean_trsfs(trsfs, params="", **kwargs):
print(str(proc) + ": unexpected type '" + str(type(kwargs["out_file_path"]))
+ "'for 'kwargs[\"out_file_path\"]'")
return None
return subprocess.call(["meanTrsfs", "-trsfs"] + trsfs + ["-res", kwargs["out_file_path"]] + params.split())
cmd_params = ["-trsfs"] + trsfs + ["-res", kwargs["out_file_path"]]
return subprocess.run(["meanTrsfs"] + cmd_params + params.split()).returncode
#
# python procedure
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment