From 8c3cacf523c943b9233c714c8fff1f679074b7a4 Mon Sep 17 00:00:00 2001 From: Ville Rantanen Date: Fri, 16 Feb 2018 14:06:00 +0200 Subject: [PATCH] always the same typo --- code/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/app.py b/code/app.py index 370fbfb..cf1141c 100644 --- a/code/app.py +++ b/code/app.py @@ -330,7 +330,7 @@ def makedirs_rights(path): path_list = path.split(os.sep) for p in range(len(path_list)): 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) set_rights(current_path)