From 61dea4de4dd2ad615e7d5186ea3b982d3dbd4ffa Mon Sep 17 00:00:00 2001 From: Luke Sneeringer Date: Wed, 16 Jul 2014 08:23:47 -0500 Subject: [PATCH] Change human credential types. This commit updates the human credential types from SCM/AWS to "Source Control" and "Amazon Web Services". --- awx/main/models/credential.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/awx/main/models/credential.py b/awx/main/models/credential.py index e646d9b5bc..4bf6d62791 100644 --- a/awx/main/models/credential.py +++ b/awx/main/models/credential.py @@ -28,8 +28,8 @@ class Credential(PasswordFieldsModel, CommonModelNameNotUnique): KIND_CHOICES = [ ('ssh', _('Machine')), - ('scm', _('SCM')), - ('aws', _('AWS')), + ('scm', _('Source Control')), + ('aws', _('Amazon Web Services')), ('rax', _('Rackspace')), ]