diff --git a/examples/fetch.py b/examples/fetch.py index cbcef403..6e72b6cd 100644 --- a/examples/fetch.py +++ b/examples/fetch.py @@ -67,5 +67,5 @@ # Print image url for 20 last images from thread. images = client.fetchThreadImages("") -for image in islice(image, 20): +for image in islice(images, 20): print(image.large_preview_url)