fix exec_start() documentation

Signed-off-by: Corentin Henry <corentinhenry@gmail.com>
This commit is contained in:
Corentin Henry 2018-11-28 13:59:19 -08:00
parent 76447d0ca3
commit 41c0eb7e80
1 changed files with 2 additions and 2 deletions

View File

@ -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`