diff --git a/program/urls.py b/program/urls.py index e7217b80a56f4c4d523ddbe0ac8a7403fff6f2e2..d02ee3103bc27f92bcb811923950696997e75fff 100644 --- a/program/urls.py +++ b/program/urls.py @@ -15,7 +15,7 @@ urlpatterns = patterns('', url(r'^week/?$', week_schedule), url(r'^(?P<year>\d{4})/(?P<month>\d{1,2})/(?P<day>\d{1,2})/?$', day_schedule), url(r'^(?P<year>\d{4})/(?P<week>\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<object_id>\d+)/?$', host_detail, name='host-detail'), url(r'^tips/?$', recommendations),