Skip to content

Commit

Permalink
put_archive: note the data may also be a stream
Browse files Browse the repository at this point in the history
Signed-off-by: Aarni Koskela <akx@iki.fi>
  • Loading branch information
akx committed Jul 14, 2022
1 parent e131955 commit 78f3693
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docker/api/container.py
Original file line number Diff line number Diff line change
Expand Up @@ -949,7 +949,7 @@ def put_archive(self, container, path, data):
container (str): The container where the file(s) will be extracted
path (str): Path inside the container where the file(s) will be
extracted. Must exist.
data (bytes): tar data to be extracted
data (bytes or stream): tar data to be extracted
Returns:
(bool): True if the call succeeds.
Expand Down
2 changes: 1 addition & 1 deletion docker/models/containers.py
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,7 @@ def put_archive(self, path, data):
Args:
path (str): Path inside the container where the file(s) will be
extracted. Must exist.
data (bytes): tar data to be extracted
data (bytes or stream): tar data to be extracted
Returns:
(bool): True if the call succeeds.
Expand Down

0 comments on commit 78f3693

Please sign in to comment.