From bce873ffaebe17f3798352cbfc698d6690699fd8 Mon Sep 17 00:00:00 2001 From: dharm pimsen <64675096+damp11113@users.noreply.github.com> Date: Sat, 30 Mar 2024 23:27:07 +0700 Subject: [PATCH] Updated [Thai] Home (markdown) --- [Thai]-Home.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/[Thai]-Home.md b/[Thai]-Home.md index cddebb7..1e2d75a 100644 --- a/[Thai]-Home.md +++ b/[Thai]-Home.md @@ -41,9 +41,9 @@ useraccount.add_account("admin", "") ssh = Server(useraccount) @ssh.on_user("command") -def command(channel, command: str, client): +def command(client, command: str): if command == "hello": - Send(channel, "world!") + Send(client, "world!") ssh.run(os.path.join(os.path.dirname(os.path.realpath(__file__)), 'private_key.pem')) ```