From 0fdcf435e1c40c9f209bca2fad2d1f8373babcbd Mon Sep 17 00:00:00 2001 From: Nathan Woodburn Date: Mon, 27 Oct 2025 15:47:02 +1100 Subject: [PATCH] fix: Cleanup help --- blueprints/terminal.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/blueprints/terminal.py b/blueprints/terminal.py index f34a5aa..29dafd7 100644 --- a/blueprints/terminal.py +++ b/blueprints/terminal.py @@ -24,7 +24,7 @@ COMMANDS = { "rm [file]": "Remove a file", "tree [path]": "Display directory tree", "touch [file]": "Create a new empty file", - "nano [file]": "Edit a file (write content)", + "nano [file]": "Edit a file", "reset": "Reset the terminal session", "exit": "Exit the terminal session", } @@ -567,7 +567,6 @@ def tree(): @terminal_bp.route("/terminal/execute/", methods=["POST"]) def execute_catch(command): try: - # Basic command processing if command == "help": output = "Available commands:\n" + \