From 112dc12bc04bfc00b62de85017c9cd6e8a45e9c7 Mon Sep 17 00:00:00 2001 From: ewanbarr Date: Wed, 5 Apr 2017 19:06:59 +0200 Subject: [PATCH] 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 --- docker/models/containers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/models/containers.py b/docker/models/containers.py index 0d328e72..a86e5037 100644 --- a/docker/models/containers.py +++ b/docker/models/containers.py @@ -585,7 +585,7 @@ class ContainerCollection(Collection): stdin_open (bool): Keep ``STDIN`` open even if not attached. stdout (bool): Return logs from ``STDOUT`` when ``detach=False``. Default: ``True``. - stdout (bool): Return logs from ``STDERR`` when ``detach=False``. + stderr (bool): Return logs from ``STDERR`` when ``detach=False``. Default: ``False``. stop_signal (str): The stop signal to use to stop the container (e.g. ``SIGINT``).