summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Harney <eharney@redhat.com>2021-04-15 08:37:32 -0400
committerEric Harney <eharney@redhat.com>2021-04-15 08:41:41 -0400
commite9dc1f7b326b1c185cae4510cc4401b28bf69113 (patch)
treeacae346996015de8cf6774d3ec523999aa0b057a
parent127b3589233e769d3a19d2978a694f4bfcc59f1c (diff)
downloadoslo-log-e9dc1f7b326b1c185cae4510cc4401b28bf69113.tar.gz
Fix log_rotate_interval help text formatting
Add a missing space, this currently generates "setto" in config files. Change-Id: I4086fcab1e96e9127d7fe084d887cf57c8f87828
-rw-r--r--oslo_log/_options.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/oslo_log/_options.py b/oslo_log/_options.py
index e1c2dd8..9138368 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',