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

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'release/scripts/obj_export.py')
-rw-r--r--release/scripts/obj_export.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/release/scripts/obj_export.py b/release/scripts/obj_export.py
index d39d9969859..cba44b6ea61 100644
--- a/release/scripts/obj_export.py
+++ b/release/scripts/obj_export.py
@@ -135,7 +135,7 @@ def save_obj(filename):
# modify the open file.
for f in m.faces:
if len(f.v) < 3:
- mesh.faces.remove(f)
+ m.faces.remove(f)
if len(m.faces) == 0: # Make sure there is somthing to write.
continue #dont bother with this mesh.