io_coat3D: fix error when reading exchange_folder

This commit is contained in:
Kalle-Samuli Riihikoski 2020-10-10 11:16:31 +03:00
parent 77aada8057
commit bf3c9f5901
1 changed files with 3 additions and 3 deletions

View File

@ -120,8 +120,7 @@ def set_exchange_folder():
if(not(os.path.isdir(applink_folder))):
os.makedirs(applink_folder)
if(os.path.isfile(exchange_path) == False):
if(os.path.isfile(exchange_path) == False or os.path.getsize(exchange_path) == 0):
file = open(exchange_path, "w")
file.write("%s"%(exchange_path))
file.close()
@ -1138,7 +1137,8 @@ def blender_3DC_blender(texturelist, file_applink_address):
objekti.select_set(False)
if(coat3D.remove_path == True):
os.remove(path3b_n)
if(os.path.isfile(path3b_n)):
os.remove(path3b_n)
coat3D.remove_path = False
bpy.ops.object.select_all(action='DESELECT')