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:
authorKalle-Samuli Riihikoski <haikalle@gmail.com>2019-01-27 21:42:53 +0300
committerKalle-Samuli Riihikoski <haikalle@gmail.com>2019-01-27 21:43:45 +0300
commitbcfdc06a16deeb5b48deda5024069a2ce141203c (patch)
tree7daf5cbb9098830f9f531bc2ea0ae83b4ed7239a
parent438ca980e6b1ab0b0f22c2b35e319738ae494c26 (diff)
Fix applink folder path.
-rw-r--r--io_coat3D/__init__.py7
1 files changed, 1 insertions, 6 deletions
diff --git a/io_coat3D/__init__.py b/io_coat3D/__init__.py
index e52682df..6ef7ac50 100644
--- a/io_coat3D/__init__.py
+++ b/io_coat3D/__init__.py
@@ -88,12 +88,7 @@ def set_exchange_folder():
Blender_export = ""
if(platform == 'win32'):
- exchange = os.path.expanduser("~") + os.sep + 'Documents' + os.sep + '3D-CoatV48' + os.sep +'Exchange'
- if not(os.path.isdir(exchange)):
- exchange = os.path.expanduser("~") + os.sep + 'Documents' + os.sep + '3D-CoatV4' + os.sep +'Exchange'
- if not (os.path.isdir(exchange)):
- exchange = os.path.expanduser("~") + os.sep + 'Documents' + os.sep + '3D-CoatV3' + os.sep + 'Exchange'
-
+ exchange = os.path.expanduser("~") + os.sep + 'Documents' + os.sep + 'Applinks' + os.sep + '3D-Coat' + os.sep +'Exchange'
else:
exchange = os.path.expanduser("~") + os.sep + '3D-CoatV4' + os.sep + 'Exchange'
if not(os.path.isdir(exchange)):