diff options
author | Owl <isaclien9752@gmail.com> | 2025-09-29 12:54:17 -0400 |
---|---|---|
committer | Owl <isaclien9752@gmail.com> | 2025-09-29 12:54:17 -0400 |
commit | 3ee4e9d9f74ae99cb17ca45a511b66dcd755d1b9 (patch) | |
tree | f9c3abfa3897097fa42adc5a3163608d76b04496 /bcsv_editing.py | |
parent | 70e647076418d114111aa76b5d3639a5b4271e94 (diff) | |
download | blenxy-3ee4e9d9f74ae99cb17ca45a511b66dcd755d1b9.tar.gz blenxy-3ee4e9d9f74ae99cb17ca45a511b66dcd755d1b9.zip |
Diffstat (limited to 'bcsv_editing.py')
-rw-r--r-- | bcsv_editing.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bcsv_editing.py b/bcsv_editing.py index 8aad5e8..91ecad5 100644 --- a/bcsv_editing.py +++ b/bcsv_editing.py @@ -775,7 +775,7 @@ class DATA_OT_smg_bcsv_table_import(bpy.types.Operator, bpy_extras.io_utils.Impo # try importing the BCSV table result = bcsv_funcs.read_bcsv_file(self.properties.filepath, self.endian_mode) # check how the reading went - if (type(result) == str): + if (type(result) == None): blender_funcs.disp_msg(result) return {"FINISHED"} |