From 620af3602be20f1184d477715add032d5f5f14f9 Mon Sep 17 00:00:00 2001 From: Aurélien Bompard Date: Wed, 14 Nov 2012 17:35:01 +0100 Subject: Adapt to MySQL support splitting out the timezone offset Since the sender's timezone is in a separate column, we can now display the message date in Django's timezone and in the sender's timezone. Future improvement : ask the user for his/her preferred timezone and store it in his/her profile. Then use that to display the dates, instead of Django's server-wide setting. --- hyperkitty/views/list.py | 1 - 1 file changed, 1 deletion(-) (limited to 'hyperkitty/views/list.py') diff --git a/hyperkitty/views/list.py b/hyperkitty/views/list.py index 8fda41d..e17b346 100644 --- a/hyperkitty/views/list.py +++ b/hyperkitty/views/list.py @@ -92,7 +92,6 @@ def archives(request, mlist_fqdn, year=None, month=None, day=None): participants = set() cnt = 0 for thread in threads: - print "*"*10, len(thread), thread.thread_id, thread.starting_email is None participants.update(thread.participants) highestlike = 0 -- cgit