From d4b096a5130f9de70640eb643b92be60f164c4ca Mon Sep 17 00:00:00 2001 From: Daniel Gonzalez Date: Thu, 19 May 2016 09:38:41 +0200 Subject: [PATCH] Remove html_static_path from api-ref In Id3a71841f5b9a9ea7bb5803afd967ab4feadfe10 the in tree copy of os-api-ref was migrated to the upstream version. The html_static_path setting in conf.py was forgotten in the patch, which caused a warning when building the API reference. This patch comments out the setting from conf.py to prevent the warning. TrivialFix Change-Id: I267b3f671fdfa2033c24d9407c7bed7e8527e9a2 --- api-ref/source/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api-ref/source/conf.py b/api-ref/source/conf.py index 0a2eb9f878..590e4d98fd 100644 --- a/api-ref/source/conf.py +++ b/api-ref/source/conf.py @@ -140,7 +140,7 @@ pygments_style = 'sphinx' # Add any paths that contain custom static files (such as style sheets) here, # relative to this directory. They are copied after the builtin static files, # so a file named "default.css" will overwrite the builtin "default.css". -html_static_path = ['_static'] +# html_static_path = ['_static'] # If not '', a 'Last updated on:' timestamp is inserted at every page bottom, # using the given strftime format.