From 822057d535ad57557f3eafe5a83f33b6eee1dd0f Mon Sep 17 00:00:00 2001 From: Maciej Szankin Date: Wed, 30 Nov 2016 13:36:13 -0600 Subject: [PATCH] conf: fix formatting in base * Removed leading space before asterisks in listings which causes list to be wrapped in blockquote tag [0] [0] http://docs.openstack.org/newton/config-reference/compute/config-options.html Change-Id: I9d1bea48d082d3cbbb7a8f45143eac10407bf490 Implements: blueprint centralize-config-options-ocata --- nova/conf/base.py | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/nova/conf/base.py b/nova/conf/base.py index e4663fb62876..98dd21c8c274 100644 --- a/nova/conf/base.py +++ b/nova/conf/base.py @@ -33,9 +33,10 @@ offset to given period by appending @ character followed by a number defining offset. Possible values: - * period, example: ``hour``, ``day``, ``month` or ``year`` - * period with offset, example: ``month@15`` - will result in monthly audits starting on 15th day of month. + +* period, example: ``hour``, ``day``, ``month` or ``year`` +* period with offset, example: ``month@15`` will result in monthly audits + starting on 15th day of month. '''), cfg.BoolOpt( 'use_rootwrap_daemon', @@ -67,8 +68,8 @@ Determine if monkey patching should be applied. Related options: - * ``monkey_patch_modules``: This must have values set for this option to have - any effect +* ``monkey_patch_modules``: This must have values set for this option to + have any effect """), cfg.ListOpt( 'monkey_patch_modules', @@ -81,14 +82,14 @@ modules. Possible values: - * nova.compute.api:nova.notifications.notify_decorator - * nova.api.ec2.cloud:nova.notifications.notify_decorator - * [...] +* nova.compute.api:nova.notifications.notify_decorator +* nova.api.ec2.cloud:nova.notifications.notify_decorator +* [...] Related options: - * ``monkey_patch``: This must be set to ``True`` for this option to - have any effect +* ``monkey_patch``: This must be set to ``True`` for this option to + have any effect """), ]