Skip to content
Snippets Groups Projects
Commit 8cf4a8aa authored by Nicola Vigano's avatar Nicola Vigano
Browse files

Python: fixed deprecated cosntruct

parent a93e1030
No related branches found
No related tags found
No related merge requests found
......@@ -214,7 +214,7 @@ class MexBuilder(object):
cmd.append("-largeArrayDims")
cmd.append("-lut")
# cmd.append("-largeArrayDims") # This unfortunately conflicts with mym.cpp
self.out.printSubSubJob("File", cmd[1] + " (cmd: " + string.join(cmd, " ") + " )")
self.out.printSubSubJob("File", cmd[1] + " (cmd: " + " ".join(cmd) + " )")
return subprocess.call(cmd)
def compile_mex_files(self):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment