summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorshimizukawa <shimizukawa@gmail.com>2014-12-03 23:13:21 +0900
committershimizukawa <shimizukawa@gmail.com>2014-12-03 23:13:21 +0900
commite542996056906cac2fb7339ea62dbee8b71f1129 (patch)
treecc9c5cca3988b6bcd9ac0b6472cc162a1c6991e3
parenta31dfd58732729ce2e4fe5b3c935af72e4e1b377 (diff)
downloadsphinx-e542996056906cac2fb7339ea62dbee8b71f1129.tar.gz
replace PIL with Pillow.
-rw-r--r--doc/config.rst8
-rw-r--r--sphinx/quickstart.py2
2 files changed, 5 insertions, 5 deletions
diff --git a/doc/config.rst b/doc/config.rst
index 8a2b76be..5b72f272 100644
--- a/doc/config.rst
+++ b/doc/config.rst
@@ -1045,9 +1045,9 @@ the `Dublin Core metadata <http://dublincore.org/>`_.
This flag determines if sphinx should try to fix image formats that are not
supported by some epub readers. At the moment palette images with a small
- color table are upgraded. You need the Python Image Library (PIL) installed
- to use this option. The default value is ``False`` because the automatic
- conversion may lose information.
+ color table are upgraded. You need the Python Image Library (Pillow the
+ successor of the PIL) installed to use this option. The default value is
+ ``False`` because the automatic conversion may lose information.
.. versionadded:: 1.2
@@ -1056,7 +1056,7 @@ the `Dublin Core metadata <http://dublincore.org/>`_.
This option specifies the maximum width of images. If it is set to a value
greater than zero, images with a width larger than the given value are
scaled accordingly. If it is zero, no scaling is performed. The default
- value is ``0``. You need the Python Image Library (PIL) installed to use
+ value is ``0``. You need the Python Image Library (Pillow) installed to use
this option.
.. versionadded:: 1.2
diff --git a/sphinx/quickstart.py b/sphinx/quickstart.py
index 4edb1213..549a7d62 100644
--- a/sphinx/quickstart.py
+++ b/sphinx/quickstart.py
@@ -407,7 +407,7 @@ epub_exclude_files = ['search.html']
# Choose between 'default' and 'includehidden'.
#epub_tocscope = 'default'
-# Fix unsupported image types using the PIL.
+# Fix unsupported image types using the Pillow.
#epub_fix_images = False
# Scale large images.