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_obj')
-rw-r--r--io_scene_obj/export_obj.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/io_scene_obj/export_obj.py b/io_scene_obj/export_obj.py
index 4d709d0e..2fe4a804 100644
--- a/io_scene_obj/export_obj.py
+++ b/io_scene_obj/export_obj.py
@@ -59,7 +59,7 @@ def write_mtl(scene, filepath, copy_images, mtl_dict):
rel = fn
return rel
- file = open(filepath, "w", encoding='utf8')
+ file = open(filepath, "w", encoding="utf8", newline="\n")
file.write('# Blender MTL File: %r\n' % os.path.basename(bpy.data.filepath))
file.write('# Material Count: %i\n' % len(mtl_dict))
# Write material/image combinations we have used.
@@ -315,7 +315,7 @@ def write_file(filepath, objects, scene,
# time1 = sys.time()
# scn = Scene.GetCurrent()
- file = open(filepath, "w")
+ file = open(filepath, "w", encoding="utf8", newline="\n")
# Write Header
file.write('# Blender v%s OBJ File: %r\n' % (bpy.app.version_string, os.path.basename(bpy.data.filepath)))