summaryrefslogtreecommitdiff
path: root/paramiko/client.py
diff options
context:
space:
mode:
authorMarwan Rabbâa <marwan.rabbaa@pandacraft.com>2017-11-28 10:10:24 +0100
committerMarwan Rabbâa <marwan.rabbaa@pandacraft.com>2017-11-28 10:10:24 +0100
commitfce787c7682e4cd759b36db78f6fa0c67d2556d3 (patch)
tree4ed4f3dd47ba8e17bb8b302db309613cadc0290e /paramiko/client.py
parenta97e977d6970b33e619601f502776eb19e691d90 (diff)
downloadparamiko-fce787c7682e4cd759b36db78f6fa0c67d2556d3.tar.gz
add documentation for get_pty param in SSHClient.exec_command()
Diffstat (limited to 'paramiko/client.py')
-rw-r--r--paramiko/client.py3
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.