From 335205bafaf703776ebe1fbf75e72268e4d9f7af Mon Sep 17 00:00:00 2001 From: Kefu Chai Date: Tue, 22 Aug 2017 11:24:12 +0800 Subject: [PATCH] doc/conf.py: do not set html_use_smartypants explicitly because it's deprecated, and is on by default in the specified sphinx version (v1.6.3): this change silences following warning: build-doc/virtualenv/local/lib/python2.7/site-packages/sphinx/environment/__init__.py:683: RemovedInSphinx17Warning: html_use_smartypants option is deprecated. Smart quotes are on by default; if you want to disable or customize them, use the smart_quotes option in docutils.conf. RemovedInSphinx17Warning) Signed-off-by: Kefu Chai --- doc/conf.py | 1 - 1 file changed, 1 deletion(-) diff --git a/doc/conf.py b/doc/conf.py index afcb778e85e..a1330f7996f 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -34,7 +34,6 @@ html_theme_path = ['_themes'] html_title = "Ceph Documentation" html_logo = 'logo.png' html_favicon = 'favicon.ico' -html_use_smartypants = True html_show_sphinx = False html_sidebars = { '**': ['smarttoc.html', 'searchbox.html'], -- 2.39.5