From 27cc9438ae7d5ecaeef1599ad40cda39e8d56999 Mon Sep 17 00:00:00 2001 From: Ernesto Rico-Schmidt Date: Wed, 30 Dec 2015 09:43:52 +0100 Subject: fixed current_box URL diff --git a/program/urls.py b/program/urls.py index e7217b8..d02ee31 100644 --- a/program/urls.py +++ b/program/urls.py @@ -15,7 +15,7 @@ urlpatterns = patterns('', url(r'^week/?$', week_schedule), url(r'^(?P\d{4})/(?P\d{1,2})/(?P\d{1,2})/?$', day_schedule), url(r'^(?P\d{4})/(?P\d{1,2})/?$', week_schedule), - url(r'^current_box/?$', cache_page(current_show, 60)), + url(r'^current_box/?$', cache_page(60)(current_show)), url(r'^hosts/?$', host_list), url(r'^hosts/(?P\d+)/?$', host_detail, name='host-detail'), url(r'^tips/?$', recommendations), -- cgit v0.10.2