diff --git a/twython_django_oauth/views.py b/twython_django_oauth/views.py index 2a76f00..d44c83f 100644 --- a/twython_django_oauth/views.py +++ b/twython_django_oauth/views.py @@ -39,7 +39,7 @@ def begin_auth(request): # Then send them over there, durh. request.session['request_token'] = auth_props - request.session["next_url"] = request.GET.get("next",None) + request.session['next_url'] = request.GET.get('next',None) return HttpResponseRedirect(auth_props['auth_url'])