From 5eb615f4b516d84b6e1239170ac45ad709d26294 Mon Sep 17 00:00:00 2001 From: Jannis Leidel Date: Thu, 11 Aug 2022 10:49:32 +0200 Subject: [PATCH] Fix rST rendering issue. --- docs/index.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/index.txt b/docs/index.txt index b2a04ba..88c975b 100644 --- a/docs/index.txt +++ b/docs/index.txt @@ -215,14 +215,17 @@ appear on the site. Listed below are those settings: Pillow. Defaults to ``Image.ANTIALIAS``. .. py:data:: AVATAR_THUMB_FORMAT + The file format of thumbnails, based on the options available in Pillow. Defaults to `PNG`. .. py:data:: AVATAR_THUMB_QUALITY + The quality of thumbnails, between 0 (worst) to 95 (best) or the string "keep" (only JPEG) as provided by Pillow. Defaults to `85`. .. py:data:: AVATAR_THUMB_MODES + A sequence of acceptable modes for thumbnails as provided by Pillow. If the mode of the image is not in the list, the thumbnail will be converted to the first mode in the list. Defaults to `('RGB', 'RGBA')`.