summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Jenkinsfile2
-rw-r--r--README.md2
-rw-r--r--docs/index.rst2
3 files changed, 3 insertions, 3 deletions
diff --git a/Jenkinsfile b/Jenkinsfile
index 4f97077..d99c605 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -1,6 +1,6 @@
#!groovy
-def imageNameBase = "dockerbuildbot/docker-py"
+def imageNameBase = "dockerpinata/docker-py"
def imageNamePy2
def imageNamePy3
def imageDindSSH
diff --git a/README.md b/README.md
index 3ff124d..8ce684b 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...
...
diff --git a/docs/index.rst b/docs/index.rst
index 63e85d3..93b30d4 100644
--- a/docs/index.rst
+++ b/docs/index.rst
@@ -58,7 +58,7 @@ You can stream logs:
.. code-block:: python
>>> for line in container.logs(stream=True):
- ... print line.strip()
+ ... print(line.strip())
Reticulating spline 2...
Reticulating spline 3...
...