From ff55477ebf63ebbfaf7a5f258ecfd0d117fef5ba Mon Sep 17 00:00:00 2001 From: Bastien Montagne Date: Mon, 9 Mar 2015 08:56:35 +0100 Subject: Fix T43934: import obj file fails ( error ) Stupid mistake in own recent work on OBJ... --- io_scene_obj/import_obj.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'io_scene_obj') diff --git a/io_scene_obj/import_obj.py b/io_scene_obj/import_obj.py index bc184b4e..6f8e955d 100644 --- a/io_scene_obj/import_obj.py +++ b/io_scene_obj/import_obj.py @@ -957,7 +957,7 @@ def load(operator, context, filepath, line_split = line_split[1:] # Instantiate a face face = create_face(context_material, context_smooth_group, context_object) - face_vert_loc_indices, _1, _2, _3, _4, _5 = face + face_vert_loc_indices, _1, _2, _3, _4, _5, _6 = face faces.append(face) # Else, use face_vert_loc_indices and face_vert_tex_indices previously defined and used the obj_face -- cgit v1.2.3