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>2012-11-30 18:40:47 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-11-30 18:40:47 +0400
commit671f515d37c9e6b7d2591b1282cf2bf6d4bf9c5b (patch)
tree5783e7bec0016a03c22c38bf6d7eb6b9d9348e90 /io_mesh_stl/stl_utils.py
parent1b85ce8040eddee9977d673f58924958a050f073 (diff)
correct typos
Diffstat (limited to 'io_mesh_stl/stl_utils.py')
-rw-r--r--io_mesh_stl/stl_utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/io_mesh_stl/stl_utils.py b/io_mesh_stl/stl_utils.py
index ded7d2c6..1d35acb1 100644
--- a/io_mesh_stl/stl_utils.py
+++ b/io_mesh_stl/stl_utils.py
@@ -163,7 +163,7 @@ def _ascii_read(data):
def _binary_write(filename, faces):
with open(filename, 'wb') as data:
# header
- # we write padding at header begginning to avoid to
+ # we write padding at header beginning to avoid to
# call len(list(faces)) which may be expensive
data.write(struct.calcsize('<80sI') * b'\0')