Skip to content

Commit d8a4976

Browse files
committed
Bugfix and version bump: forgot import in view
1 parent 93a619d commit d8a4976

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,7 @@ When the CSRF validation token doesn't match, django-admin-oauth2 will redirect
7676

7777
## Changelog
7878

79+
- 1.3.3: Bugfix: forgot import in view
7980
- 1.3.2: Fix bug: Don't try to serialize an anonymous user
8081
- 1.3.1: Update setup.py so pypi README docs are formatted
8182
- 1.3.0: Add support for `JSONSerializer`

oauthadmin/views.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
from urllib.parse import quote_plus
1212

1313
from django.shortcuts import redirect
14-
from django.http import HttpResponseRedirect
14+
from django.http import HttpResponseRedirect, HttpResponse
1515
from django.core import serializers
1616

1717
from oauthadmin.utils import import_by_path

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
setup(
1919
name='django-admin-oauth2',
20-
version='1.3.2',
20+
version='1.3.3',
2121
description='A django app that replaces the django admin authentication mechanism by deferring to an oauth2 provider',
2222
long_description=README,
2323
long_description_content_type='text/markdown',

0 commit comments

Comments
 (0)