Skip to content
Snippets Groups Projects
Commit 8e4c6e09 authored by Benjamin Zagorsky's avatar Benjamin Zagorsky
Browse files

fixes typo

parent e56057e2
No related branches found
No related tags found
No related merge requests found
......@@ -12,7 +12,7 @@ def is_allowed(request, allowed_roles, raise_exception):
if not isinstance(lti_launch, dict):
# If this is raised, then likely the project doesn't have
# the correct settings or is being run outside of an lti context
raise ImproperlyConfigured("No LTI_LAUNCH vale found in session")
raise ImproperlyConfigured("No LTI_LAUNCH found in session")
user_roles = lti_launch.get('roles', [])
is_user_allowed = set(allowed) & set(user_roles)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment