From 2aee124fb5c4efe597ff6a2f08ea0afb1dc5a548 Mon Sep 17 00:00:00 2001 From: Hugo Date: Tue, 5 Sep 2017 13:43:34 +0300 Subject: [PATCH] Fix docs to match code Code was fixed in https://github.com/python-pillow/Pillow/pull/2267 but not the docs. --- docs/handbook/image-file-formats.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/handbook/image-file-formats.rst b/docs/handbook/image-file-formats.rst index 4ced9fcae..7975c6900 100644 --- a/docs/handbook/image-file-formats.rst +++ b/docs/handbook/image-file-formats.rst @@ -178,8 +178,8 @@ The :py:meth:`~PIL.Image.Image.save` method supports the following options: **sizes** A list of sizes including in this ico file; these are a 2-tuple, ``(width, height)``; Default to ``[(16, 16), (24, 24), (32, 32), (48, 48), - (64, 64), (128, 128), (255, 255)]``. Any sizes bigger than the original - size or 255 will be ignored. + (64, 64), (128, 128), (256, 256)]``. Any sizes bigger than the original + size or 256 will be ignored. IM ^^