Update docs/handbook/tutorial.rst

Co-authored-by: Andrew Murray <3112309+radarhere@users.noreply.github.com>
This commit is contained in:
Jan-Hendrik Müller 2022-04-16 08:12:54 +02:00 committed by GitHub
parent 12665d8db4
commit f9bf1cd59d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -511,7 +511,7 @@ Reading from URL
from PIL import Image
from urllib.request import urlopen
url = "https://raw.githubusercontent.com/python-pillow/pillow-logo/main/pillow-logo-248x250.png"
url = "https://python-pillow.org/images/pillow-logo.png"
img = Image.open(urlopen(url))