diff --git a/io_scene_obj/export_obj.py b/io_scene_obj/export_obj.py index a7d4d52173930acfba4164195cde6987c601f8fb..d138889d168735b165688786b140fd117abbff76 100644 --- a/io_scene_obj/export_obj.py +++ b/io_scene_obj/export_obj.py @@ -628,7 +628,7 @@ def write_file(filepath, objects, scene, if EXPORT_EDGES: for ed in edges: if ed.is_loose: - fw('f %d %d\n' % (ed.vertices[0] + totverts, ed.vertices[1] + totverts)) + fw('l %d %d\n' % (ed.vertices[0] + totverts, ed.vertices[1] + totverts)) # Make the indices global rather then per mesh totverts += len(me_verts)