diff options
author | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2016-01-01 10:35:42 +0900 |
---|---|---|
committer | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2016-01-01 10:35:45 +0900 |
commit | 3c907f233787d6774a8dd714f201adb9a4592163 (patch) | |
tree | c3ea0692268019278ebdd7a0eee34f25e5d1149f /sphinx/quickstart.py | |
parent | ed196a8adf650272f40b1f66e7ff57e317702f33 (diff) | |
download | sphinx-git-3c907f233787d6774a8dd714f201adb9a4592163.tar.gz |
Fix #2027: ``make epub`` got errors if ``html_title`` is None
Sphinx does not expect setting None value as ``html_title`` in
spite of documented.
This changed that to deny None value as ``html_title``.
Diffstat (limited to 'sphinx/quickstart.py')
-rw-r--r-- | sphinx/quickstart.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sphinx/quickstart.py b/sphinx/quickstart.py index ffc4961dc..913e4a2bb 100644 --- a/sphinx/quickstart.py +++ b/sphinx/quickstart.py @@ -190,9 +190,9 @@ html_theme = 'alabaster' # Add any paths that contain custom themes here, relative to this directory. #html_theme_path = [] -# The name for this set of Sphinx documents. If None, it defaults to -# "<project> v<release> documentation". -#html_title = None +# The name for this set of Sphinx documents. +# "<project> v<release> documentation" by default. +#html_title = u'%(project_str)s v%(release_str)s' # A shorter title for the navigation bar. Default is the same as html_title. #html_short_title = None |