From 15e4c96f4e357847e095269899c0d281fb91bf68 Mon Sep 17 00:00:00 2001 From: intlabs Date: Tue, 17 Oct 2017 09:17:09 -0500 Subject: [PATCH] Make docs conf.py Pep8 compliant This PS makes the docs setup pep8 compliant. Change-Id: Ibbd29dee6166de8e2afb6aef0b7be3c0b3d76e94 --- docs/source/conf.py | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/docs/source/conf.py b/docs/source/conf.py index 3e5311f0..e1579ca6 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -19,7 +19,7 @@ # import os # import sys # sys.path.insert(0, os.path.abspath('.')) - +import sphinx_rtd_theme # -- General configuration ------------------------------------------------ @@ -39,11 +39,13 @@ extensions = [ ] # oslo_config.sphinxconfiggen options -config_generator_config_file = '../../etc/drydock/drydock-config-generator.conf' +config_generator_config_file = \ + '../../etc/drydock/drydock-config-generator.conf' sample_config_basename = '_static/drydock' # oslo_policy.sphinxpolicygen options -policy_generator_config_file = '../../etc/drydock/drydock-policy-generator.conf' +policy_generator_config_file = \ + '../../etc/drydock/drydock-policy-generator.conf' sample_policy_basename = '_static/drydock' # Add any paths that contain templates here, relative to this directory. @@ -96,7 +98,6 @@ todo_include_todos = False # The theme to use for HTML and HTML Help pages. See the documentation for # a list of builtin themes. # -import sphinx_rtd_theme html_theme = "sphinx_rtd_theme" html_theme_path = [sphinx_rtd_theme.get_html_theme_path()] @@ -165,6 +166,7 @@ man_pages = [ texinfo_documents = [ (master_doc, 'Drydock', u'Drydock Documentation', author, 'Drydock', - 'An orchestrator to translate a host topology to a provisioned set of hosts.', + 'An orchestrator to translate a host topology to a provisioned set of \ +hosts.', 'Miscellaneous'), ]