Close #1776: `source_suffix = ['.rst']` cause unfriendly error on prior version.

This commit is contained in:
shimizukawa 2015-03-16 00:20:33 +09:00
parent e8e5bae15f
commit 36d47a2193
2 changed files with 4 additions and 1 deletions

View File

@ -12,6 +12,7 @@ Bugs fixed
* #1770, #1774: ``literalinclude`` with empty file occurs exception. Thanks to
Takayuki Hirai.
* #1777: Sphinx 1.3 can't load extra theme. Thanks to tell-k.
* #1776: ``source_suffix = ['.rst']`` cause unfriendly error on prior version.
Release 1.3 (released Mar 10, 2015)

View File

@ -108,7 +108,9 @@ extensions = [%(extensions)s]
templates_path = ['%(dot)stemplates']
# The suffix(es) of source filenames.
source_suffix = ['%(suffix)s']
# You can specify multiple suffix as a list of string:
# source_suffix = ['.rst', '.md']
source_suffix = '%(suffix)s'
# The encoding of source files.
#source_encoding = 'utf-8-sig'