Skip to content

Commit

Permalink
Fixed issue #22 -- Added RequestContext to render methods.
Browse files Browse the repository at this point in the history
Signed-off-by: Simon Willison <simon@simonwillison.net>
  • Loading branch information
brosner authored and Simon Willison committed May 5, 2009
1 parent 18c14e8 commit 50db891
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
2 changes: 2 additions & 0 deletions django_openid/consumer.py
Expand Up @@ -10,6 +10,8 @@
...
)
"""
from django.conf import settings
from django.template import RequestContext
from django.http import HttpResponse, HttpResponseRedirect, Http404
from django.shortcuts import render_to_response
from openid.consumer import consumer
Expand Down
1 change: 1 addition & 0 deletions django_openid/provider.py
@@ -1,4 +1,5 @@
from django.conf import settings
from django.template import RequestContext
from django.http import HttpResponse, HttpResponseRedirect, Http404
from django.shortcuts import render_to_response
from openid.server.server import Server
Expand Down

0 comments on commit 50db891

Please sign in to comment.