From 0fe5a1c5e3e22b7c2b725897c1d8336fd3c0684b Mon Sep 17 00:00:00 2001 From: Adarnof Date: Fri, 16 Dec 2016 17:43:44 -0500 Subject: [PATCH] Correct context processor for SSO address. --- authentication/context_processors.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/authentication/context_processors.py b/authentication/context_processors.py index d403df83..e6f7d242 100644 --- a/authentication/context_processors.py +++ b/authentication/context_processors.py @@ -21,5 +21,5 @@ def states(request): def sso(request): return { - 'EVE_SSO_CALLBACK_URL': settings.EVE_SSO_CALLBACK_URL, + 'EVE_SSO_CALLBACK_URL': settings.ESI_SSO_CALLBACK_URL, }