Skip to content

Commit f5ad149

Browse files
committed
error exporting .ascii
1 parent 93b201c commit f5ad149

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

write_ascii_xps.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,13 +41,13 @@ def writeMeshes(meshes):
4141

4242
for mesh in sortedMeshes:
4343
# Name
44-
meshesString.write(''.join(mesh.name, '\n'))
44+
meshesString.write(''.join((mesh.name, '\n')))
4545
# uv Count
4646
meshesString.write('{:d} # uv layers\n'.format(mesh.uvCount))
4747
# Textures
4848
meshesString.write('{:d} # textures\n'.format(len(mesh.textures)))
4949
for texture in mesh.textures:
50-
meshesString.write(''.join(texture.file, '\n'))
50+
meshesString.write(''.join((texture.file, '\n')))
5151
meshesString.write(
5252
'{:d} # uv layer index\n'.format(texture.uvLayer))
5353

0 commit comments

Comments
 (0)