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:
authorCampbell Barton <ideasman42@gmail.com>2011-01-18 04:58:49 +0300
committerCampbell Barton <ideasman42@gmail.com>2011-01-18 04:58:49 +0300
commit84c40946e4197841c6345af32bab15524742fb6b (patch)
treeea7de2a1c3acd166d8f9acbfd347eb7fd68cabce /io_scene_obj/export_obj.py
parentee29d3dcc6e025c4627ed9edfb4c32413a4f0702 (diff)
correct bad spelling; 'indicies' --> 'indices'
Diffstat (limited to 'io_scene_obj/export_obj.py')
-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 0b80b52f..bc66deec 100644
--- a/io_scene_obj/export_obj.py
+++ b/io_scene_obj/export_obj.py
@@ -435,7 +435,7 @@ def write_file(filepath, objects, scene,
# Cant use LC because some materials are None.
# materialNames = map(lambda mat: mat.name, materials) # Bug Blender, dosent account for null materials, still broken.
- # Possible there null materials, will mess up indicies
+ # Possible there null materials, will mess up indices
# but at least it will export, wait until Blender gets fixed.
materialNames.extend((16-len(materialNames)) * [None])
materialItems.extend((16-len(materialItems)) * [None])
@@ -659,7 +659,7 @@ def write_file(filepath, objects, scene,
if ed.is_loose:
file.write('f %d %d\n' % (ed.vertices[0] + totverts, ed.vertices[1] + totverts))
- # Make the indicies global rather then per mesh
+ # Make the indices global rather then per mesh
totverts += len(me_verts)
if faceuv:
totuvco += uv_unique_count