Skip to content

Commit 112dc12

Browse files
ewanbarrEwan Barr
authored andcommitted
Minor typo correction
The stdout argument name was repeated in the run method docstring. The second should be replaced by stderr. Signed-off-by: Ewan Barr <[email protected]>
1 parent d12b5bb commit 112dc12

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docker/models/containers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -585,7 +585,7 @@ def run(self, image, command=None, stdout=True, stderr=False,
585585
stdin_open (bool): Keep ``STDIN`` open even if not attached.
586586
stdout (bool): Return logs from ``STDOUT`` when ``detach=False``.
587587
Default: ``True``.
588-
stdout (bool): Return logs from ``STDERR`` when ``detach=False``.
588+
stderr (bool): Return logs from ``STDERR`` when ``detach=False``.
589589
Default: ``False``.
590590
stop_signal (str): The stop signal to use to stop the container
591591
(e.g. ``SIGINT``).

0 commit comments

Comments
 (0)