diff options
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"} |