diff options
author | Marwan Rabbâa <marwan.rabbaa@pandacraft.com> | 2017-11-28 10:10:24 +0100 |
---|---|---|
committer | Marwan Rabbâa <marwan.rabbaa@pandacraft.com> | 2017-11-28 10:10:24 +0100 |
commit | fce787c7682e4cd759b36db78f6fa0c67d2556d3 (patch) | |
tree | 4ed4f3dd47ba8e17bb8b302db309613cadc0290e | |
parent | a97e977d6970b33e619601f502776eb19e691d90 (diff) |
add documentation for get_pty param in SSHClient.exec_command()
-rw-r--r-- | paramiko/client.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/paramiko/client.py b/paramiko/client.py index 6f0cb847..89c25f55 100644 --- a/paramiko/client.py +++ b/paramiko/client.py @@ -463,6 +463,9 @@ class SSHClient (ClosingContextManager): Python :param int timeout: set command's channel timeout. See `.Channel.settimeout` + :param bool get_pty: + Request a pseudo-terminal from the server (default ``False``). + See `Channel.get_pty` :param dict environment: a dict of shell environment variables, to be merged into the default environment that the remote command executes within. |