fail less
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Torma Kristóf 2021-04-26 13:28:57 +02:00
parent ae743cde15
commit a14e0414b6
Signed by: tormakris
GPG Key ID: DC83C4F2C41B1047

View File

@ -50,8 +50,8 @@ class Server:
return self.execute(parsedCommand[0], parsedCommand[1], parsedCommand[2])
def execute(self, command: str, firstParam: str = "", secondParam: str = "") -> None:
if self.executor.currentDirectory == "" or self.executor.baseDir == "":
raise Exception("Directories must not be empty string. Did the user log in?")
if self.executor.baseDir == "":
raise Exception("Home directory must not be empty string. Did the user log in?")
if command == "LOUT":
if secondParam != "" or firstParam != "":
self.networkInstance.sendMessage("ERROR".encode('UTF-8'))
@ -121,5 +121,8 @@ class Server:
def startServer(self):
while True:
try:
message = self.networkInstance.recieveMessage().decode('UTF-8')
self.parseCommand(message)
except Exception as e:
print(e)