From 982ee741fbd2b023c8151d38194055af07c3a1b7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Douglas=20Mendiz=C3=A1bal?= Date: Tue, 18 Aug 2020 11:43:31 -0500 Subject: [PATCH] Fix indentation nits This patch fixes a couple of indentation issues that were called out on a previous review [0] [0] https://review.opendev.org/#/c/679502 Change-Id: I2617e011619f8a28d2c6faac124f6a9fb40d0c99 --- nova/conf/console.py | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/nova/conf/console.py b/nova/conf/console.py index 0d21321938b1..745b4368a60a 100644 --- a/nova/conf/console.py +++ b/nova/conf/console.py @@ -42,7 +42,7 @@ Possible values: * A list where each element is an allowed origin hostnames, else an empty list """), cfg.StrOpt('ssl_ciphers', - help=""" + help=""" OpenSSL cipher preference string that specifies what ciphers to allow for TLS connections from clients. For example:: @@ -59,19 +59,19 @@ Related options: * [DEFAULT] key """), cfg.StrOpt('ssl_minimum_version', - default='default', - choices=[ - # These values must align with SSL_OPTIONS in - # websockify/websocketproxy.py - ('default', 'Use the underlying system OpenSSL defaults'), - ('tlsv1_1', - 'Require TLS v1.1 or greater for TLS connections'), - ('tlsv1_2', - 'Require TLS v1.2 or greater for TLS connections'), - ('tlsv1_3', - 'Require TLS v1.3 or greater for TLS connections'), - ], - help=""" + default='default', + choices=[ + # These values must align with SSL_OPTIONS in + # websockify/websocketproxy.py + ('default', 'Use the underlying system OpenSSL defaults'), + ('tlsv1_1', + 'Require TLS v1.1 or greater for TLS connections'), + ('tlsv1_2', + 'Require TLS v1.2 or greater for TLS connections'), + ('tlsv1_3', + 'Require TLS v1.3 or greater for TLS connections'), + ], + help=""" Minimum allowed SSL/TLS protocol version. Related options: