ARCH: fix propper removing of tempfile on windows
This commit is contained in:
parent
cfbde714e9
commit
8ab027b218
|
@ -537,9 +537,10 @@ def insert(filename,docname,skip=[],only=[],root=None):
|
||||||
# workaround to remove the bad placement: exporting/reimporting as step
|
# workaround to remove the bad placement: exporting/reimporting as step
|
||||||
if not ex[0].Placement.isNull():
|
if not ex[0].Placement.isNull():
|
||||||
import tempfile
|
import tempfile
|
||||||
tf = tempfile.mkstemp(suffix=".stp")[1]
|
fd, tf = tempfile.mkstemp(suffix=".stp")
|
||||||
ex[0].exportStep(tf)
|
ex[0].exportStep(tf)
|
||||||
f = Part.read(tf)
|
f = Part.read(tf)
|
||||||
|
os.close(fd)
|
||||||
os.remove(tf)
|
os.remove(tf)
|
||||||
else:
|
else:
|
||||||
f = ex[0]
|
f = ex[0]
|
||||||
|
|
Loading…
Reference in New Issue
Block a user