Skip to content

Commit 41c0eb7

Browse files
committed
fix exec_start() documentation
Signed-off-by: Corentin Henry <[email protected]>
1 parent 76447d0 commit 41c0eb7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docker/api/exec_api.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -130,14 +130,14 @@ def exec_start(self, exec_id, detach=False, tty=False, stream=False,
130130
stream (bool): Stream response data. Default: False
131131
socket (bool): Return the connection socket to allow custom
132132
read/write operations.
133-
demux (bool): Separate return stdin, stdout and stderr separately
133+
demux (bool): Return stdout and stderr separately
134134
135135
Returns:
136136
137137
(generator or str or tuple): If ``stream=True``, a generator
138138
yielding response chunks. If ``socket=True``, a socket object for
139139
the connection. A string containing response data otherwise. If
140-
``demux=True``, stdin, stdout and stderr are separated.
140+
``demux=True``, stdout and stderr are separated.
141141
142142
Raises:
143143
:py:class:`docker.errors.APIError`

0 commit comments

Comments
 (0)