From fdf64597ec722ca1f7dc7fb7a6947a9659f89ec0 Mon Sep 17 00:00:00 2001 From: Benjamin Loison Date: Mon, 6 Apr 2020 12:46:34 +0200 Subject: [PATCH] Update fetch.py Variable name mismatched. --- examples/fetch.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)