From 89406e71d9541396a48370d48e40f5e6c1e4a357 Mon Sep 17 00:00:00 2001 From: Aurélien Bompard Date: Thu, 14 Nov 2013 18:21:20 +0100 Subject: Move error templates in their own directory --- hyperkitty/lib/mailman.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'hyperkitty/lib/mailman.py') diff --git a/hyperkitty/lib/mailman.py b/hyperkitty/lib/mailman.py index 090902b..4283e70 100644 --- a/hyperkitty/lib/mailman.py +++ b/hyperkitty/lib/mailman.py @@ -108,7 +108,7 @@ def check_mlist_private(func): raise Http404("No archived mailing-list by that name.") #return HttpResponse(request.session.get("subscribed", "NO KEY"), content_type="text/plain") if not is_mlist_authorized(request, mlist): - return render(request, "error-private.html", { + return render(request, "errors/private.html", { "mlist": mlist, }, status=403) return func(request, *args, **kwargs) -- cgit