From 37d2e06a182cc823e9528d059b4e53b3f6e97c76 Mon Sep 17 00:00:00 2001 From: "DESKTOP-DPA61F8\\Benedek" Date: Thu, 29 Apr 2021 17:16:08 +0200 Subject: [PATCH] OK --- server/executor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/executor.py b/server/executor.py index bf7302d..4586c5c 100644 --- a/server/executor.py +++ b/server/executor.py @@ -47,7 +47,7 @@ class Executor: return self.currentDirectory else: dirName = self.sanitizeDirectory(dirName) - joinedDir = os.path.join(self.currentDirectory, dirName) + joinedDir = os.path.join(self.baseDir, self.currentDirectory, dirName) if os.path.exists(joinedDir): self.currentDirectory = joinedDir return self.currentDirectory