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 >}}