Skip to content

Commit

Permalink
Update images_manager.py
Browse files Browse the repository at this point in the history
Signed-off-by: Antonio <vozaanthony@gmail.com>
  • Loading branch information
D3vil0p3r authored Jan 15, 2025
1 parent 1a34340 commit e730182
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion podman/domain/images_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -412,7 +412,7 @@ def pull(
if stream:
return self._stream_helper(response, decode=kwargs.get("decode"))

for item in response.iter_lines():
for item in reversed(list(response.iter_lines())):
obj = json.loads(item)
if all_tags and "images" in obj:
images: List[Image] = []
Expand Down

0 comments on commit e730182

Please sign in to comment.