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>2018-01-24 01:54:28 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-01-24 01:55:37 +0300
commitf12892eadac836f73593cd9a48c52188c9b32c0c (patch)
treeb6372549fbb6f084e33896c18b5432db6e990634 /io_scene_fbx
parent3dc0ceb198da078de839fcb1b23f98967da0ceb7 (diff)
Fix T53875: json2fbx: error reading type spec
Diffstat (limited to 'io_scene_fbx')
-rwxr-xr-xio_scene_fbx/json2fbx.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/io_scene_fbx/json2fbx.py b/io_scene_fbx/json2fbx.py
index dc4c5bcc..579b45a7 100755
--- a/io_scene_fbx/json2fbx.py
+++ b/io_scene_fbx/json2fbx.py
@@ -108,9 +108,9 @@ def parse_json_rec(fbx_root, json_node):
elif dt == "d":
e.add_float64_array(d)
elif dt == "b":
- e.add_byte_array(d)
- elif dt == "c":
e.add_bool_array(d)
+ elif dt == "c":
+ e.add_byte_array(d)
if name == "FBXVersion":
assert(data_types == "I")