From e9dc1f7b326b1c185cae4510cc4401b28bf69113 Mon Sep 17 00:00:00 2001 From: Eric Harney Date: Thu, 15 Apr 2021 08:37:32 -0400 Subject: [PATCH] Fix log_rotate_interval help text formatting Add a missing space, this currently generates "setto" in config files. Change-Id: I4086fcab1e96e9127d7fe084d887cf57c8f87828 --- oslo_log/_options.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/oslo_log/_options.py b/oslo_log/_options.py index e1c2dd83..91383680 100644 --- a/oslo_log/_options.py +++ b/oslo_log/_options.py @@ -115,7 +115,7 @@ generic_log_opts = [ cfg.IntOpt('log_rotate_interval', default=1, help='The amount of time before the log files are rotated. ' - 'This option is ignored unless log_rotation_type is set' + 'This option is ignored unless log_rotation_type is set ' 'to "interval".'), cfg.StrOpt('log_rotate_interval_type', choices=['Seconds', 'Minutes', 'Hours', 'Days', 'Weekday',