Test for MKD / RMD works like a charm
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2021-04-26 14:40:32 +02:00
parent 3e0afb0d45
commit b08da25d21
3 changed files with 13 additions and 6 deletions

View File

@@ -21,13 +21,13 @@ class Server:
def login(self, homeDir: str) -> None:
self.isAuthenticated = True
self.executor.baseDir = Executor(homeDir)
self.executor = Executor("", homeDir)
def logout(self) -> None:
self.networkInstance.logout()
self.isAuthenticated = False
self.availableServer = False
self.executor.baseDir = Executor("")
self.executor = Executor("")
def parseCommand(self, command: str) -> None:
if command == "LINOK":