summaryrefslogtreecommitdiff
path: root/docker/utils
diff options
context:
space:
mode:
authorJoffrey F <joffrey@docker.com>2016-12-02 15:37:58 -0800
committerJoffrey F <joffrey@docker.com>2016-12-12 13:28:49 -0800
commit769ca5a76a4dcd2f4c87248c12dc0ced5313ab75 (patch)
tree5ad7f9455182097b9ec873f3ddef380a40a389ac /docker/utils
parentc6d1c2dc847a1bcc3590a7a006b10159f8182307 (diff)
downloaddocker-py-docker_sdk_rename.tar.gz
Rename non-URL occurrences of docker-py to "Docker SDK for Python"docker_sdk_rename
Signed-off-by: Joffrey F <joffrey@docker.com>
Diffstat (limited to 'docker/utils')
-rw-r--r--docker/utils/json_stream.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/docker/utils/json_stream.py b/docker/utils/json_stream.py
index f97ab9e..addffdf 100644
--- a/docker/utils/json_stream.py
+++ b/docker/utils/json_stream.py
@@ -13,10 +13,11 @@ json_decoder = json.JSONDecoder()
def stream_as_text(stream):
- """Given a stream of bytes or text, if any of the items in the stream
+ """
+ Given a stream of bytes or text, if any of the items in the stream
are bytes convert them to text.
- This function can be removed once docker-py returns text streams instead
- of byte streams.
+ This function can be removed once we return text streams
+ instead of byte streams.
"""
for data in stream:
if not isinstance(data, six.text_type):