Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'io_scene_gltf2/io/exp/gltf2_io_export.py')
-rwxr-xr-xio_scene_gltf2/io/exp/gltf2_io_export.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/io_scene_gltf2/io/exp/gltf2_io_export.py b/io_scene_gltf2/io/exp/gltf2_io_export.py
index 07cf8820..54181206 100755
--- a/io_scene_gltf2/io/exp/gltf2_io_export.py
+++ b/io_scene_gltf2/io/exp/gltf2_io_export.py
@@ -103,16 +103,14 @@ def save_gltf(gltf, export_settings, encoder, glb_buffer):
file.write(struct.pack("I", length_gltf))
file.write('JSON'.encode())
file.write(gltf_data)
- for i in range(0, spaces_gltf):
- file.write(' '.encode())
+ file.write(b' ' * spaces_gltf)
# Chunk 1 (BIN)
if length_bin > 0:
file.write(struct.pack("I", length_bin))
file.write('BIN\0'.encode())
file.write(binary)
- for i in range(0, zeros_bin):
- file.write('\0'.encode())
+ file.write(b'\0' * zeros_bin)
file.close()