Merge pull request #1539 from smorrison/master

when mkdir of missing app folders, handle broken links properly
This commit is contained in:
mdipierro
2016-12-20 15:40:30 -06:00
committed by GitHub

View File

@@ -438,7 +438,11 @@ def add_path_first(path):
def try_mkdir(path):
if not os.path.exists(path):
try:
os.mkdir(path)
if os.path.islink(path):
# path is a broken link, try to mkdir the target of the link instead of the link itself.
os.mkdir(os.path.realpath(path))
else:
os.mkdir(path)
except OSError as e:
if e.strerror == 'File exists': # In case of race condition.
pass