From 5c080678a689e202286be189cb128e90e3d06d93 Mon Sep 17 00:00:00 2001 From: Christian Adams Date: Fri, 18 Jan 2019 13:27:01 -0500 Subject: [PATCH] correct authorization code expiration help-text --- awx/api/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awx/api/conf.py b/awx/api/conf.py index ccd1ddf08c..27f255c68b 100644 --- a/awx/api/conf.py +++ b/awx/api/conf.py @@ -43,7 +43,7 @@ register( help_text=_('Dictionary for customizing OAuth 2 timeouts, available items are ' '`ACCESS_TOKEN_EXPIRE_SECONDS`, the duration of access tokens in the number ' 'of seconds, and `AUTHORIZATION_CODE_EXPIRE_SECONDS`, the duration of ' - 'authorization grants in the number of seconds.'), + 'authorization codes in the number of seconds.'), category=_('Authentication'), category_slug='authentication', )