[Bf-extensions-cvs] [ae3237c4] master: io_anim_nuke Fix issue with property assignment

NBurn noreply at git.blender.org
Fri Jun 28 22:59:31 CEST 2019


Commit: ae3237c4c5e6ba05c44fad5edd5fcd7e0b34b1a8
Author: NBurn
Date:   Fri Jun 28 16:58:16 2019 -0400
Branches: master
https://developer.blender.org/rBAae3237c4c5e6ba05c44fad5edd5fcd7e0b34b1a8

io_anim_nuke Fix issue with property assignment

===================================================================

M	io_anim_nuke_chan/__init__.py

===================================================================

diff --git a/io_anim_nuke_chan/__init__.py b/io_anim_nuke_chan/__init__.py
index 48da8b1d..fe5f4738 100644
--- a/io_anim_nuke_chan/__init__.py
+++ b/io_anim_nuke_chan/__init__.py
@@ -76,7 +76,7 @@ class ImportChan(Operator, ImportHelper):
 
     filter_glob: StringProperty(default="*.chan", options={'HIDDEN'})
 
-    rotation_order = rotation_order
+    rotation_order: rotation_order
     z_up: BoolProperty(
             name="Make Z up",
             description="Switch the Y and Z axis",
@@ -118,7 +118,7 @@ class ExportChan(Operator, ExportHelper):
             name="Make Y up",
             description="Switch the Y and Z axis",
             default=True)
-    rotation_order = rotation_order
+    rotation_order: rotation_order
 
     @classmethod
     def poll(cls, context):



More information about the Bf-extensions-cvs mailing list