summaryrefslogtreecommitdiffstats
path: root/public/views.py
diff options
context:
space:
mode:
authorDan McGee <dan@archlinux.org>2010-08-27 09:41:28 -0500
committerDan McGee <dan@archlinux.org>2010-08-27 09:41:28 -0500
commit661b5e6b639dc224eecd5a992ff6e5c1fbb672ea (patch)
tree988485cad9f6cb41070f6d9122656facec62582f /public/views.py
parent181573a74ad9149718f90f688dc1475b59cb8d73 (diff)
downloadarchweb-661b5e6b639dc224eecd5a992ff6e5c1fbb672ea.tar.gz
archweb-661b5e6b639dc224eecd5a992ff6e5c1fbb672ea.zip
Add missing RequestContext in feeds view
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'public/views.py')
-rw-r--r--public/views.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/public/views.py b/public/views.py
index 13589a80..f2c649f9 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:
-