# HG changeset patch # User Goffi # Date 1458904673 -3600 # Node ID f82b97d9ca5f0b24debcf2ae0a9e715a36f2614b # Parent bc3a3e804a7a689199e4e23a3765fd99f3aaba92 server (blog): use unicode character for ellispsis in atom feed's microblog title diff -r bc3a3e804a7a -r f82b97d9ca5f src/server/blog.py --- a/src/server/blog.py Thu Mar 24 19:43:17 2016 +0100 +++ b/src/server/blog.py Fri Mar 25 12:17:53 2016 +0100 @@ -470,7 +470,7 @@ title = item['title'] except KeyError: # for microblog (without title), we use an abstract of content as title - title = u'{}...'.format(u' '.join(item['content'][:70].split())) + title = u'{}…'.format(u' '.join(item['content'][:70].split())) entry_elt.addElement(u'title', content=title) # HTTP link