From 9a47984628de7e89c8a9985fd661bfee78ca11c0 Mon Sep 17 00:00:00 2001 From: Kalle-Samuli Riihikoski Date: Mon, 12 Oct 2020 17:50:11 +0300 Subject: io_coat3D:abspath fix. --- io_coat3D/folders.py | 4 ++-- 1 file 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 -- cgit v1.2.3