From 6efeeeb0839ed908c895038883840e8a8b2b4de5 Mon Sep 17 00:00:00 2001 From: Matthew Jones Date: Tue, 6 Dec 2016 12:29:56 -0500 Subject: [PATCH] Adding missing period for timeout --- awx/main/models/projects.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awx/main/models/projects.py b/awx/main/models/projects.py index 2d045cee6f..6c76143f40 100644 --- a/awx/main/models/projects.py +++ b/awx/main/models/projects.py @@ -113,7 +113,7 @@ class ProjectOptions(models.Model): timeout = models.IntegerField( blank=True, default=0, - help_text=_("The amount of time to run before the task is canceled"), + help_text=_("The amount of time to run before the task is canceled."), ) def clean_scm_type(self):