summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZuul <zuul@review.opendev.org>2021-04-16 12:04:08 +0000
committerGerrit Code Review <review@openstack.org>2021-04-16 12:04:08 +0000
commitb8ccdcf9e9f8be4f7c57f43e4245fdc58cdc14ab (patch)
tree1e9b35b672869645ba039fc42995c717b8cf580e
parent2c067a916c75336bfc154bde71880f73c7133ea8 (diff)
parente9dc1f7b326b1c185cae4510cc4401b28bf69113 (diff)
downloadoslo-log-b8ccdcf9e9f8be4f7c57f43e4245fdc58cdc14ab.tar.gz
Merge "Fix log_rotate_interval help text formatting"
-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',