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:
-rw-r--r--io_scene_obj/import_obj.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/io_scene_obj/import_obj.py b/io_scene_obj/import_obj.py
index 890d1203..b60cb907 100644
--- a/io_scene_obj/import_obj.py
+++ b/io_scene_obj/import_obj.py
@@ -672,8 +672,8 @@ def create_mesh(new_objects,
# me_edges[ed].flag |= SHARP
# del SHARP
- me.update(calc_edges=use_edges)
me.validate()
+ me.update(calc_edges=use_edges)
ob = bpy.data.objects.new(me.name, me)
new_objects.append(ob)