always the same typo
This commit is contained in:
@@ -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)
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user