From 27cc9438ae7d5ecaeef1599ad40cda39e8d56999 Mon Sep 17 00:00:00 2001
From: Ernesto Rico-Schmidt <e.rico.schmidt@gmail.com>
Date: Wed, 30 Dec 2015 09:43:52 +0100
Subject: [PATCH] fixed current_box URL

---
 program/urls.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/program/urls.py b/program/urls.py
index e7217b80..d02ee310 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),
-- 
GitLab