* src/docgen/HtmlDoc.py (add_photo): Fix typo in image reference.

svn: r1708
This commit is contained in:
Alex Roitman 2003-06-11 16:26:36 +00:00
parent a29cc933f7
commit 37e9220498
2 changed files with 5 additions and 2 deletions

View File

@ -1,3 +1,6 @@
2003-06-11 Tim Waugh <twaugh@redhat.com>
* src/docgen/HtmlDoc.py (add_photo): Fix typo in image reference.
2003-06-10 Alex Roitman <shura@alex.neuro.umn.edu>
* src/Plugins.py: Add more values for book item registration.
* src/plugins/FtmStyleDescendants.py: Comply with book changes.

View File

@ -366,10 +366,10 @@ class HtmlDoc(TextDoc.TextDoc):
xtra = ''
if self.image_dir:
self.f.write('<img src="%s/%s" border="0""%s>\n' % \
self.f.write('<img src="%s/%s" border="0"%s>\n' % \
(self.image_dir,refname,xtra))
else:
self.f.write('<img src="%s" border="0""%s>\n' % (refname,xtra))
self.f.write('<img src="%s" border="0"%s>\n' % (refname,xtra))
def start_table(self,name,style):
self.tbl = self.table_styles[style]