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)