diff --git a/examples/fetch.py b/examples/fetch.py index cbcef40..6e72b6c 100644 --- a/examples/fetch.py +++ b/examples/fetch.py @@ -67,5 +67,5 @@ print("thread's type: {}".format(thread.type)) # 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)