Niall Quinlan 2018-01-16 17:58:19 +00:00 committed by Florian Festi
parent 62b6016448
commit e725bf2dc4
1 changed files with 1 additions and 1 deletions

View File

@ -381,8 +381,8 @@ Create boxes and more with a laser cutter!
fd, box.output = tempfile.mkstemp()
box.render()
result = open(box.output).readlines()
os.remove(box.output)
os.close(fd)
os.remove(box.output)
return (l.encode("utf-8") for l in result)
if __name__=="__main__":