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-04-03 06:27:35 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-04-03 06:27:35 +0400
commit4b1c9bfcdf1a8ad840ef80252627b4a63aee0314 (patch)
tree71550afbde1b312db83df14d3603ba16933070b7 /io_anim_bvh
parent13a5e23652b3cd81ce28ccad34cb2f1dae0bb3f4 (diff)
style cleanup: pep8
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 9875487f..a19b39db 100644
--- a/io_anim_bvh/import_bvh.py
+++ b/io_anim_bvh/import_bvh.py
@@ -43,7 +43,7 @@ class BVH_Node(object):
'has_rot', # Convenience function, bool, same as (channels[3]!=-1 or channels[4]!=-1 or channels[5]!=-1)
'index', # index from the file, not strictly needed but nice to maintain order
'temp', # use this for whatever you want
- )
+ )
_eul_order_lookup = {(0, 1, 2): 'XYZ',
(0, 2, 1): 'XZY',