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:
-rw-r--r--io_coat3D/__init__.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/io_coat3D/__init__.py b/io_coat3D/__init__.py
index 5eb64008..7f23801a 100644
--- a/io_coat3D/__init__.py
+++ b/io_coat3D/__init__.py
@@ -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')