From 14293ba36db3d3cc1d6c6853be642e1c305b5c76 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Thu, 5 Dec 2019 18:23:51 +0530 Subject: [PATCH] Content server: Remove un-needed narrow nbsp before titles in mobile view --- src/calibre/srv/legacy.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/calibre/srv/legacy.py b/src/calibre/srv/legacy.py index 4a68c0a316..376944b04e 100644 --- a/src/calibre/srv/legacy.py +++ b/src/calibre/srv/legacy.py @@ -188,11 +188,11 @@ def build_index(rd, books, num, search, sort, order, start, total, url_base, fie if val: ctext += '%s=[%s] '%(name, val) - first = E.span(u'\u202f%s %s by %s' % (book.title, series, + first = E.span('%s %s by %s' % (book.title, series, authors_to_string(book.authors)), class_='first-line') div.append(first) ds = '' if is_date_undefined(book.timestamp) else strftime('%d %b, %Y', t=dt_as_local(book.timestamp).timetuple()) - second = E.span(u'%s %s %s' % (ds, tags, ctext), class_='second-line') + second = E.span('%s %s %s' % (ds, tags, ctext), class_='second-line') div.append(second) books_table.append(E.tr(thumbnail, data))