From 7f1a5f10130b27721776b0bee240c2dd8412bf59 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torma=20Krist=C3=B3f?= Date: Thu, 29 Apr 2021 17:22:14 +0200 Subject: [PATCH] now --- server/executor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/executor.py b/server/executor.py index 41ee405..985d0de 100644 --- a/server/executor.py +++ b/server/executor.py @@ -40,7 +40,7 @@ class Executor: directories = self.currentDirectory.split(os.path.sep) strdirectory = "" for dir in directories: - strdirectory += dir + os.path.sep + strdirectory = os.path.join(strdirectory, dir) strdirectory = strdirectory[:-3] if os.path.exists(os.path.join(self.baseDir, self.currentDirectory)): self.currentDirectory = strdirectory