From 26ef284ae4468b6ed3a41b07394a8c2e2512d0f5 Mon Sep 17 00:00:00 2001
From: Campbell Barton <ideasman42@gmail.com>
Date: Mon, 15 Jul 2013 09:42:13 +0000
Subject: [PATCH] remove unneeded check

---
 io_scene_fbx/export_fbx.py | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/io_scene_fbx/export_fbx.py b/io_scene_fbx/export_fbx.py
index 802e7950e..da833bad4 100644
--- a/io_scene_fbx/export_fbx.py
+++ b/io_scene_fbx/export_fbx.py
@@ -2605,10 +2605,9 @@ Connections:  {''')
 
         # get the current action first so we can use it if we only export one action (JCB)
         for my_arm in ob_arms:
-            if not blenActionDefault:
-                blenActionDefault = my_arm.blenAction
-                if blenActionDefault:
-                    break
+            blenActionDefault = my_arm.blenAction
+            if blenActionDefault:
+                break
 
         if use_anim_action_all:
             tmp_actions = bpy.data.actions[:]
-- 
GitLab