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-02-08 08:38:51 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-02-08 08:38:51 +0400
commitf9f04ce37a22fad60de3821d0728c4b1a4346032 (patch)
tree3638f24ba4ab937116b4d70a4495b510510106da /io_anim_bvh
parent3dc406ac5166dbe38ee7c54e60ca7a3e3afaf697 (diff)
code cleanup: style and typo - some edits to bypass the comments spell checker.
Diffstat (limited to 'io_anim_bvh')
-rw-r--r--io_anim_bvh/import_bvh.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/io_anim_bvh/import_bvh.py b/io_anim_bvh/import_bvh.py
index 48407507..0022cc8c 100644
--- a/io_anim_bvh/import_bvh.py
+++ b/io_anim_bvh/import_bvh.py
@@ -94,7 +94,7 @@ def read_bvh(context, file_path, rotate_mode='XYZ', global_scale=1.0):
# Split by whitespace.
file_lines = [ll for ll in [l.split() for l in file_lines] if ll]
- # Create Hirachy as empties
+ # Create hierarchy as empties
if file_lines[0][0].lower() == 'hierarchy':
#print 'Importing the BVH Hierarchy for:', file_path
pass