From 036d9f5663bacc5ba35273ec72ddef91f15532cf Mon Sep 17 00:00:00 2001 From: Armin Ronacher Date: Thu, 15 Jul 2010 20:22:55 +0200 Subject: [PATCH] Fixed title as well --- sync-librelist.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sync-librelist.py b/sync-librelist.py index 7742f23c..8eb409e7 100644 --- a/sync-librelist.py +++ b/sync-librelist.py @@ -125,7 +125,7 @@ class Tree(object): def add_thread_for(self, mail): self.threads.append({ - 'title': mail['subject'], + 'title': mail['subject'] or '[No Subject]', 'slug': self.generate_slug(mail), 'date': mail['date'], 'author': mail['author'],