Replace hardcoded G R A M P S 3.4.0 string with Non-breaking space instead.

This commit is contained in:
Sam Manzi 2015-08-20 11:46:00 +10:00
parent cf03abcbc9
commit b9ff5b1525

View File

@ -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)