From: Kefu Chai Date: Tue, 22 Aug 2017 03:24:12 +0000 (+0800) Subject: doc/conf.py: do not set html_use_smartypants explicitly X-Git-Tag: v13.0.0~44^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=335205bafaf703776ebe1fbf75e72268e4d9f7af;p=ceph.git 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 --- diff --git a/doc/conf.py b/doc/conf.py index afcb778e85ed..a1330f7996f1 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'],