From eddd82f32317e1a43ba4c784fe5541e23d9ce77a Mon Sep 17 00:00:00 2001 From: JaydenMW Date: Sat, 20 Feb 2021 21:24:31 +0000 Subject: [PATCH] Update shell.py --- shell.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/shell.py b/shell.py index f31db04..e98910b 100644 --- a/shell.py +++ b/shell.py @@ -55,7 +55,10 @@ def pclish_cd(path): print("cd: no such file or directory: {}".format(path)) def pclish_echo(TXT): - print(TXT) + try: + print(TXT) + exception Exception: + print("You need to provide arguments") def pclish_oscmd(ARGS): os.system(ARGS)