From 50ccd1b003c05081bb80a269ffe98b512c911f1a Mon Sep 17 00:00:00 2001 From: Matthew Jones Date: Thu, 2 Mar 2017 15:04:15 -0500 Subject: [PATCH] Fix validation error grammar --- 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 6f80fafd6a..bf60e5b77c 100644 --- a/awx/main/models/projects.py +++ b/awx/main/models/projects.py @@ -142,7 +142,7 @@ class ProjectOptions(models.Model): cred = self.credential if cred: if cred.kind != 'scm': - raise ValidationError(_("Credential kind must be either 'scm'.")) + raise ValidationError(_("Credential kind must be 'scm'.")) try: if self.scm_type == 'insights': self.scm_url = settings.INSIGHTS_URL_BASE