Update fetch.py

Variable name mismatched.
This commit is contained in:
Benjamin Loison
2020-04-06 12:46:34 +02:00
committed by GitHub
parent 064707ac23
commit fdf64597ec

View File

@@ -67,5 +67,5 @@ print("thread's type: {}".format(thread.type))
# Print image url for 20 last images from thread.
images = client.fetchThreadImages("<thread id>")
for image in islice(image, 20):
for image in islice(images, 20):
print(image.large_preview_url)