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:
Diffstat (limited to 'io_coat3D/folders.py')
-rw-r--r--io_coat3D/folders.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/io_coat3D/folders.py b/io_coat3D/folders.py
index 703167ce..f4637d3c 100644
--- a/io_coat3D/folders.py
+++ b/io_coat3D/folders.py
@@ -26,7 +26,7 @@ def InitFolders():
break
folderPathh.close()
- if(os.path.isdir(folderPath) and folderPath.rfind('Exchange') >= 0):
+ if(os.path.isdir(os.path.abspath(folderPath)) and folderPath.rfind('Exchange') >= 0):
coat3D.exchangeFolder = folderPath
return True, coat3D.exchangeFolder
@@ -60,7 +60,7 @@ def InitFolders():
file.close()
file = open(exchangeFile, "w")
- file.write("%s"%(coat3D.exchangeFolder))
+ file.write("%s"%(os.path.abspath(coat3D.exchangeFolder)))
file.close()
return True, coat3D.exchangeFolder