From ee1416d9b936b9c01e9f3da59d640ecc66581ac9 Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Thu, 13 Jul 2017 13:35:40 -0400 Subject: [PATCH] Add some format help to a few Tower Configuration items. --- awx/main/conf.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/awx/main/conf.py b/awx/main/conf.py index e3156dd749..d0675a3281 100644 --- a/awx/main/conf.py +++ b/awx/main/conf.py @@ -157,7 +157,7 @@ register( field_class=fields.StringListField, required=False, label=_('Paths to hide from isolated jobs'), - help_text=_('Additional paths to hide from isolated processes.'), + help_text=_('Additional paths to hide from isolated processes. Enter one path per line.'), category=_('Jobs'), category_slug='jobs', ) @@ -167,7 +167,7 @@ register( field_class=fields.StringListField, required=False, label=_('Paths to expose to isolated jobs'), - help_text=_('Whitelist of paths that would otherwise be hidden to expose to isolated jobs.'), + help_text=_('Whitelist of paths that would otherwise be hidden to expose to isolated jobs. Enter one path per line.'), category=_('Jobs'), category_slug='jobs', ) @@ -271,7 +271,7 @@ register( field_class=fields.StringListField, required=False, label=_('Ansible Callback Plugins'), - help_text=_('List of paths to search for extra callback plugins to be used when running jobs.'), + help_text=_('List of paths to search for extra callback plugins to be used when running jobs. Enter one path per line.'), category=_('Jobs'), category_slug='jobs', )