From e505936efee38071786f2ee86f98b323a0192fb0 Mon Sep 17 00:00:00 2001 From: Luan Date: Thu, 12 Dec 2013 08:55:02 -0200 Subject: [PATCH] Removing expires time from home chart caching --- src/home/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/home/views.py b/src/home/views.py index 3a82695..404e23f 100644 --- a/src/home/views.py +++ b/src/home/views.py @@ -33,7 +33,7 @@ def index(request): count_types[trans('wiki')] = sum([ wiki.count for wiki in WikiCollabCount.objects.all() ]) - cache.set('home_chart', count_types, 60) + cache.set('home_chart', count_types) context = { 'hottest_threads': hottest_threads[:6], -- libgit2 0.21.2