summaryrefslogtreecommitdiffstats
path: root/hyperkitty/views
diff options
context:
space:
mode:
authorAurélien Bompard <aurelien@bompard.org>2012-11-13 17:44:40 +0100
committerAurélien Bompard <aurelien@bompard.org>2012-11-14 17:35:01 +0100
commitde9f63b4cd882526f0dde3775e4aa2ac6eea8abd (patch)
treeff0c385cf2e0b86064ae3c435602c0939f9589d1 /hyperkitty/views
parentc4706dc6b77d8eaa57a3321b61acf76eec49e23b (diff)
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.
Diffstat (limited to 'hyperkitty/views')
-rw-r--r--hyperkitty/views/list.py1
1 files changed, 0 insertions, 1 deletions
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