Fix log_rotate_interval help text formatting

Add a missing space, this currently generates
"setto" in config files.

Change-Id: I4086fcab1e96e9127d7fe084d887cf57c8f87828
This commit is contained in:
Eric Harney 2021-04-15 08:37:32 -04:00
parent 127b358923
commit e9dc1f7b32
1 changed files with 1 additions and 1 deletions

View File

@ -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',