From aaf3a89a6440b872150a5cacb74164dde3ff223a Mon Sep 17 00:00:00 2001 From: AlanCoding Date: Tue, 1 Nov 2016 20:13:52 -0400 Subject: [PATCH] fixed typo in project timeout setting --- awx/main/conf.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/awx/main/conf.py b/awx/main/conf.py index 2e26a6f1b5..aff1be27f4 100644 --- a/awx/main/conf.py +++ b/awx/main/conf.py @@ -201,8 +201,8 @@ register( field_class=fields.IntegerField, min_value=0, label=_('Default Project Update Timeout'), - help_text=_('Maximum time to allow inventory updates to run. Use value of 0 to indicate that no ' - 'timeout should be imposed. A timeout set on an individual inventory source will override this.'), + help_text=_('Maximum time to allow project updates to run. Use value of 0 to indicate that no ' + 'timeout should be imposed. A timeout set on an individual project will override this.'), category=_('Jobs'), category_slug='jobs', )