summaryrefslogtreecommitdiffstats
path: root/hyperkitty/views/thread.py
diff options
context:
space:
mode:
authorAurélien Bompard <aurelien@bompard.org>2013-05-24 11:34:12 +0200
committerAurélien Bompard <aurelien@bompard.org>2013-05-24 12:32:52 +0200
commit127944f9c2b3d1c07324d6a5dd3bec965f1d7f0a (patch)
treef5b6982e1621181069f328fcbba5f4a2262bce9c /hyperkitty/views/thread.py
parentd7960dd61479b254506fc7869144ff91f3481e9a (diff)
downloadhyperkitty-127944f9c2b3d1c07324d6a5dd3bec965f1d7f0a.tar.gz
hyperkitty-127944f9c2b3d1c07324d6a5dd3bec965f1d7f0a.tar.xz
hyperkitty-127944f9c2b3d1c07324d6a5dd3bec965f1d7f0a.zip
Cleanups
Diffstat (limited to 'hyperkitty/views/thread.py')
-rw-r--r--hyperkitty/views/thread.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/hyperkitty/views/thread.py b/hyperkitty/views/thread.py
index cc4e23a..22710d7 100644
--- a/hyperkitty/views/thread.py
+++ b/hyperkitty/views/thread.py
@@ -216,8 +216,8 @@ def add_tag(request, mlist_fqdn, threadid):
# Now refresh the tag list
tags = Tag.objects.filter(threadid=threadid, list_address=mlist_fqdn)
FakeMList = namedtuple("MailingList", ["name"])
- t = loader.get_template('threads/tags.html')
- html = t.render(RequestContext(request, {
+ tpl = loader.get_template('threads/tags.html')
+ html = tpl.render(RequestContext(request, {
"tags": tags,
"mlist": FakeMList(name=mlist_fqdn)}))