diff options
author | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2019-03-19 01:08:42 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-19 01:08:42 +0900 |
commit | c19fbfb333a21786496e9cde0f5d440c57d30df4 (patch) | |
tree | cf41f36b12144b3cf614030dd047f138bf6b5a86 /doc/conf.py | |
parent | 42c8fbd6f30d040683a56277ba59732c028623ab (diff) | |
parent | f210475489fe7f8f9fffbb68f7199bcd271ac0be (diff) | |
download | sphinx-git-c19fbfb333a21786496e9cde0f5d440c57d30df4.tar.gz |
Merge pull request #6185 from jdufresne/pyupgrade
Python-3-only clean ups discovered by pyupgrade
Diffstat (limited to 'doc/conf.py')
-rw-r--r-- | doc/conf.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/conf.py b/doc/conf.py index 58cbfe708..d32ee47ae 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -48,7 +48,7 @@ epub_fix_images = False epub_max_image_width = 0 epub_show_urls = 'inline' epub_use_index = False -epub_guide = (('toc', 'contents.xhtml', u'Table of Contents'),) +epub_guide = (('toc', 'contents.xhtml', 'Table of Contents'),) epub_description = 'Sphinx documentation generator system manual' latex_documents = [('contents', 'sphinx.tex', 'Sphinx Documentation', |