summaryrefslogtreecommitdiff
path: root/program/urls.py
diff options
context:
space:
mode:
authorErnesto Rico-Schmidt <e.rico.schmidt@gmail.com>2015-12-30 08:43:52 (GMT)
committerErnesto Rico-Schmidt <e.rico.schmidt@gmail.com>2015-12-30 08:43:52 (GMT)
commit27cc9438ae7d5ecaeef1599ad40cda39e8d56999 (patch)
tree6d5ed1a8329349ec7ef98baf22255463e132f150 /program/urls.py
parent87c905dbcec3d8c8587c832ed11abe1dc9fb8848 (diff)
fixed current_box URL
Diffstat (limited to 'program/urls.py')
-rw-r--r--program/urls.py2
1 files changed, 1 insertions, 1 deletions
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<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),