From 8c9d63ef6cc9b99be697725db6d2c84ea0f9b2aa Mon Sep 17 00:00:00 2001 From: Robert Raposa Date: Tue, 22 Oct 2019 17:04:42 -0400 Subject: [PATCH] Fix typo in comment (#22121) --- openedx/core/djangoapps/user_authn/exceptions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openedx/core/djangoapps/user_authn/exceptions.py b/openedx/core/djangoapps/user_authn/exceptions.py index d79b0094ad..b25cdf0e82 100644 --- a/openedx/core/djangoapps/user_authn/exceptions.py +++ b/openedx/core/djangoapps/user_authn/exceptions.py @@ -7,7 +7,7 @@ from openedx.core.djangolib.markup import Text class AuthFailedError(Exception): """ - This is a helper for the login view, allowing the various sub-methods to early out with an appropriate failure + This is a helper for the login view, allowing the various sub-methods to error out with an appropriate failure message. """ def __init__(self, value=None, redirect=None, redirect_url=None):