bug-fix if settings directory is a symlink.
This commit is contained in:
parent
d12a6a5620
commit
47ec22873d
|
@ -2199,6 +2199,7 @@ def savesettings():
|
|||
|
||||
# Write it
|
||||
if not os.path.exists('settings'):
|
||||
if not os.path.islink('settings'):
|
||||
os.mkdir('settings')
|
||||
file = open("settings/" + getmodelname().replace('/', '_') + ".settings", "w")
|
||||
try:
|
||||
|
|
Loading…
Reference in New Issue