From fca1e7028fb6498c8eb71f36ff43092661db8e2f Mon Sep 17 00:00:00 2001 From: Chris Vick Date: Tue, 20 Mar 2018 19:36:37 -0700 Subject: [PATCH] Added a space before closing quote to fix spelling Without the space before the lines closing quote, 'or' and 'other' get concatenated to 'orother' in the tooltip --- awx/main/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awx/main/conf.py b/awx/main/conf.py index 593607c078..85aa227722 100644 --- a/awx/main/conf.py +++ b/awx/main/conf.py @@ -421,7 +421,7 @@ register( field_class=fields.BooleanField, default=False, label=_('Log System Tracking Facts Individually'), - help_text=_('If set, system tracking facts will be sent for each package, service, or' + help_text=_('If set, system tracking facts will be sent for each package, service, or ' 'other item found in a scan, allowing for greater search query granularity. ' 'If unset, facts will be sent as a single dictionary, allowing for greater ' 'efficiency in fact processing.'),