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/folders.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/io_coat3D/folders.py b/io_coat3D/folders.py
index 36471b98..ab143083 100644
--- a/io_coat3D/folders.py
+++ b/io_coat3D/folders.py
@@ -18,17 +18,17 @@ def InitFolders():
else:
DC2Folder = os.path.expanduser("~") + os.sep + '3DC2Blender'
- exchangeFolderFile = DC2Folder + os.sep + 'Exchange_folder.txt'
+ exchangeFile = DC2Folder + os.sep + 'Exchange_folder.txt'
if(not os.path.isdir(DC2Folder)):
os.mkdir(DC2Folder)
- if(not os.path.isfile(exchangeFolderFile)):
- file = open(exchangeFolderFile, 'w')
+ if(not os.path.isfile(exchangeFile)):
+ file = open(exchangeFile, 'w')
file.close()
else:
savedExchangePath = ''
- folderPath = open(exchangeFolderFile)
+ folderPath = open(exchangeFile)
for line in folderPath:
savedExchangePath = line