From 69be7a3688cb302962f0eb2a0cfd39390f97c5da Mon Sep 17 00:00:00 2001 From: Rajakavitha Kodhandapani Date: Fri, 9 Sep 2022 18:34:01 +0530 Subject: [PATCH] Update index.md fixed the typo in the variable --- .../python/use-paramiko-python-to-ssh-server/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guides/development/python/use-paramiko-python-to-ssh-server/index.md b/docs/guides/development/python/use-paramiko-python-to-ssh-server/index.md index 4bc00ff05c0..b5cc34c2f57 100644 --- a/docs/guides/development/python/use-paramiko-python-to-ssh-server/index.md +++ b/docs/guides/development/python/use-paramiko-python-to-ssh-server/index.md @@ -63,7 +63,7 @@ client = paramiko.client.SSHClient() client.set_missing_host_key_policy(paramiko.AutoAddPolicy()) client.connect(host, username=username, password=password) _stdin, _stdout,_stderr = client.exec_command("df") -print(stdout.read().decode()) +print(_stdout.read().decode()) client.close() {{< /file >}}