0001252: Unicode error in NarrativeWeb.py in gramps3.0

svn: r9170
This commit is contained in:
Brian Matherly 2007-10-13 03:17:27 +00:00
parent aaa58638c1
commit 7b4576c6fa
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2007-10-12 Brian Matherly <brian@gramps-project.org>
* src/plugins/NarrativeWeb.py:
0001252: Unicode error in NarrativeWeb.py in gramps3.0
2007-10-12 Alex Roitman <shura@gramps-project.org>
* src/plugins/unused.glade: Do not translate GTK stock ids.

View File

@ -336,7 +336,7 @@ class BasePage:
of.write('<div id="navheader">\n')
value = _dp.parse(time.strftime('%b %d %Y'))
value = unicode(_dd.display(value), GrampsLocale.codeset)
value = _dd.display(value)
msg = _('Generated by <a href="http://gramps-project.org">'
'GRAMPS</a> on %(date)s') % { 'date' : value }