Skip to content
Snippets Groups Projects
Commit 640d4c52 authored by Colin Murtaugh's avatar Colin Murtaugh
Browse files

some cleanup; bumped the version to 0.2

parent 01b896dc
No related branches found
No related tags found
No related merge requests found
......@@ -33,7 +33,6 @@ class LTIAuthBackend(ModelBackend):
if request_key is None:
logger.error("Request doesn't contain an oauth_consumer_key; can't continue.")
#raise PermissionDenied
return None
secret = oauth_creds.get(request_key, None)
......
......@@ -49,7 +49,7 @@ class LTIAuthMiddleware(object):
auth.login(request, user)
else:
# User could not be authenticated! Bail!
logger.error('user could not be authenticated; bail with an error message')
logger.error('user could not be authenticated; let the request continue in case another auth plugin is configured')
#return HttpResponse('Authentication error! Sorry!')
#raise PermissionDenied()
......
......@@ -9,7 +9,7 @@ os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
setup(
name='django-auth-lti',
version='0.1',
version='0.2',
packages=find_packages(),
include_package_data=True,
license='TBD License', # example license
......
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