From 654e2d665ce48971d15ec5150c82f36d6413a7f2 Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Thu, 24 Dec 2020 15:29:54 +0100 Subject: [PATCH] print() is a function in Python 3 Signed-off-by: Christian Clauss --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 3ff124d7..8ce684b5 100644 --- a/README.md +++ b/README.md @@ -58,7 +58,7 @@ You can stream logs: ```python >>> for line in container.logs(stream=True): -... print line.strip() +... print(line.strip()) Reticulating spline 2... Reticulating spline 3... ...