From f65c2ac545ce6e0349995197baa692ff58c0f22d Mon Sep 17 00:00:00 2001 From: JaydenMW Date: Tue, 23 Feb 2021 15:23:10 +0000 Subject: [PATCH] Update shell.py --- shell.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/shell.py b/shell.py index a498529..b60febc 100644 --- a/shell.py +++ b/shell.py @@ -8,7 +8,7 @@ RAM = psutil.virtual_memory() CPU = platform.processor() OS = platform.system() HOST = socket.gethostname() -VER = "PCLISH v0.0.6a" +VER = "PCLISH v0.0.6a-hotfix1a" PROMPT = "shell@localhost$ " @@ -101,7 +101,7 @@ def main(): inp = input(PROMPT) if inp == "exit": break - elif inp[] == "cd ": + elif inp == "cd ": pclish_cd(inp[3:]) elif inp == "help": pclish_help()