always the same typo

This commit is contained in:
2018-02-16 14:06:00 +02:00
parent 60f040576b
commit 8c3cacf523

View File

@@ -330,7 +330,7 @@ def makedirs_rights(path):
path_list = path.split(os.sep) path_list = path.split(os.sep)
for p in range(len(path_list)): for p in range(len(path_list)):
current_path = os.sep.join(path_list[0:(p+1)]) current_path = os.sep.join(path_list[0:(p+1)])
if not os.path.exist(current_path): if not os.path.exists(current_path):
os.mkdir(current_path) os.mkdir(current_path)
set_rights(current_path) set_rights(current_path)