diff options
author | Dan McGee <dan@archlinux.org> | 2010-08-27 16:41:28 +0200 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2010-08-27 16:41:28 +0200 |
commit | 661b5e6b639dc224eecd5a992ff6e5c1fbb672ea (patch) | |
tree | 988485cad9f6cb41070f6d9122656facec62582f /public | |
parent | 181573a74ad9149718f90f688dc1475b59cb8d73 (diff) | |
download | archweb-661b5e6b639dc224eecd5a992ff6e5c1fbb672ea.tar.gz archweb-661b5e6b639dc224eecd5a992ff6e5c1fbb672ea.tar.xz |
Add missing RequestContext in feeds view
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'public')
-rw-r--r-- | public/views.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/public/views.py b/public/views.py index 13589a8..f2c649f 100644 --- a/public/views.py +++ b/public/views.py @@ -60,7 +60,7 @@ def feeds(request): 'arches': Arch.objects.all(), 'repos': Repo.objects.all(), } - return render_to_response('public/feeds.html', context) + return render_to_response('public/feeds.html', context, + context_instance=RequestContext(request)) # vim: set ts=4 sw=4 et: - |