Skip to content

Commit e730182

Browse files
authored
Update images_manager.py
Signed-off-by: Antonio <[email protected]>
1 parent 1a34340 commit e730182

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

podman/domain/images_manager.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -412,7 +412,7 @@ def pull(
412412
if stream:
413413
return self._stream_helper(response, decode=kwargs.get("decode"))
414414

415-
for item in response.iter_lines():
415+
for item in reversed(list(response.iter_lines())):
416416
obj = json.loads(item)
417417
if all_tags and "images" in obj:
418418
images: List[Image] = []

0 commit comments

Comments
 (0)