Fix issue with user manager parent dir not being created.
This commit is contained in:
parent
235727fed7
commit
2d74fc4360
|
@ -63,7 +63,6 @@ class UserManager():
|
||||||
path = os.path.abspath(os.path.join(user_root, file))
|
path = os.path.abspath(os.path.join(user_root, file))
|
||||||
if os.path.commonpath((user_root, path)) != user_root:
|
if os.path.commonpath((user_root, path)) != user_root:
|
||||||
return None
|
return None
|
||||||
parent = os.path.join(path, os.pardir)
|
|
||||||
|
|
||||||
if create_dir and not os.path.exists(parent):
|
if create_dir and not os.path.exists(parent):
|
||||||
os.mkdir(parent)
|
os.mkdir(parent)
|
||||||
|
|
Loading…
Reference in New Issue