* src/plugins/NarrativeWeb.py: Fix typos

svn: r7260
This commit is contained in:
Brian Matherly 2006-08-25 04:23:55 +00:00
parent 6e20ff386d
commit 134a6aa6f7
2 changed files with 8 additions and 4 deletions

View File

@ -1,3 +1,7 @@
2006-08-24 Brian Matherly <brian@gramps-project.org>
* src/Config/_GrampsIniKeys.py: Handle invalid default key
* src/plugins/NarrativeWeb.py: Fix typos
2006-08-24 Don Allingham <don@gramps-project.org>
* src/GrampsDb/_GrampsInMemDB.py: update maps properly on commit

View File

@ -1284,7 +1284,7 @@ class ContactPage(BasePage):
of.write('<table><tr>')
of.write('<td height="205">')
of.write('<img height="200" ')
of.write('src="%s" ' % thumb_path)
of.write('src="%s" ' % newpath)
of.write('alt="%s" />' % obj.get_description())
of.write('</td></tr></table>\n')
of.write('</div>\n')
@ -2508,10 +2508,10 @@ class WebReportOptions(ReportOptions):
data = cursor.first()
while data:
(handle, value) = data
if value[3]:
media_list.append([value[4],handle])
else:
if not value[3]:
html_list.append([value[4],handle])
media_list.append([value[4],handle])
data = cursor.next()
cursor.close()
media_list.sort()