From 884977fbcf8255502ea82a9fc73886986bd8122a Mon Sep 17 00:00:00 2001 From: Luka Peschke Date: Thu, 13 Dec 2018 17:14:57 +0100 Subject: [PATCH] Add missing help kwarg to oslo option in influx storage The "help" kwarg was not named, leading to unexpected behavior. Change-Id: I536d35dcb42095079990ff19b3f57652341aa8dd --- cloudkitty/storage/v2/influx.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cloudkitty/storage/v2/influx.py b/cloudkitty/storage/v2/influx.py index e8483fb6..3f286d1f 100644 --- a/cloudkitty/storage/v2/influx.py +++ b/cloudkitty/storage/v2/influx.py @@ -57,7 +57,7 @@ influx_storage_opts = [ ), cfg.StrOpt( 'cacert', - 'Path of the CA certificate to trust for HTTPS connections', + help='Path of the CA certificate to trust for HTTPS connections', default=None ), ]