From b9ff5b152564e199f86206709b9d50277e4010ff Mon Sep 17 00:00:00 2001 From: Sam Manzi Date: Thu, 20 Aug 2015 11:46:00 +1000 Subject: [PATCH] Replace hardcoded G R A M P S 3.4.0 string with Non-breaking space instead. --- gramps/plugins/webreport/narrativeweb.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gramps/plugins/webreport/narrativeweb.py b/gramps/plugins/webreport/narrativeweb.py index a38e3b681..62c6b97ab 100644 --- a/gramps/plugins/webreport/narrativeweb.py +++ b/gramps/plugins/webreport/narrativeweb.py @@ -4805,7 +4805,7 @@ class ThumbnailPreviewPage(BasePage): return media_list.sort(key=lambda x: SORT_KEY(x[0])) - # reate thumbnail preview page... + # Create thumbnail preview page... of, sio = self.report.create_file("thumbnails") thumbnailpage, head, body = self.write_header(_("Thumbnails")) @@ -4837,7 +4837,7 @@ class ThumbnailPreviewPage(BasePage): trow = Html("tr") thead += trow - ltrs = ["G", "r", "a", "m", "p", "s", "3.4.0"] + ltrs = [" ", " ", " ", " ", " ", " ", " "] for ltr in ltrs: trow += Html("th", ltr, class_ ="weekend", inline =True)