diff options
author | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2016-01-17 18:59:44 +0900 |
---|---|---|
committer | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2016-01-17 18:59:44 +0900 |
commit | 8c8f3dbc9b653497051f7eb33eda6e07d95524bc (patch) | |
tree | 9e5401e10e6951bb4bdb2d1626eff2754f41ed0d /sphinx/quickstart.py | |
parent | 198d4a41ada737bbff02f29c350ea9641d60f6b4 (diff) | |
parent | 3c907f233787d6774a8dd714f201adb9a4592163 (diff) | |
download | sphinx-git-8c8f3dbc9b653497051f7eb33eda6e07d95524bc.tar.gz |
Merge pull request #2208 from tk0miya/2027_html_title_only_accepts_string
Fix #2027: ``make epub`` got errors if ``html_title`` is None
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 2f5f76cbd..c69681d1f 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 |