From 5666dfe2c37ae3fe42eb6915c176c661db2733e5 Mon Sep 17 00:00:00 2001 From: "pawnesh.kumar" Date: Thu, 6 Oct 2016 09:27:24 +0530 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: I595a5a85db9fbacdf17f1bc4706ee4cc6705d81a --- 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 018780ae..fe5e28df 100644 --- a/api-ref/source/conf.py +++ b/api-ref/source/conf.py @@ -154,7 +154,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.