From 31df123aca0abf270bca45103eed2b7374f634a4 Mon Sep 17 00:00:00 2001 From: Javyer Der Derian Date: Wed, 30 Jul 2014 11:37:31 -0300 Subject: [PATCH] removed double quotes, changed to single quotes --- twython_django_oauth/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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'])