From 41c0eb7e804ef428da27509714df34d26a56b9a6 Mon Sep 17 00:00:00 2001 From: Corentin Henry Date: Wed, 28 Nov 2018 13:59:19 -0800 Subject: [PATCH] fix exec_start() documentation Signed-off-by: Corentin Henry --- docker/api/exec_api.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/api/exec_api.py b/docker/api/exec_api.py index 39509919..d13b1289 100644 --- a/docker/api/exec_api.py +++ b/docker/api/exec_api.py @@ -130,14 +130,14 @@ class ExecApiMixin(object): stream (bool): Stream response data. Default: False socket (bool): Return the connection socket to allow custom read/write operations. - demux (bool): Separate return stdin, stdout and stderr separately + demux (bool): Return stdout and stderr separately Returns: (generator or str or tuple): If ``stream=True``, a generator yielding response chunks. If ``socket=True``, a socket object for the connection. A string containing response data otherwise. If - ``demux=True``, stdin, stdout and stderr are separated. + ``demux=True``, stdout and stderr are separated. Raises: :py:class:`docker.errors.APIError`