diff --git a/gramps2/ChangeLog b/gramps2/ChangeLog index debba5777..ff864b304 100644 --- a/gramps2/ChangeLog +++ b/gramps2/ChangeLog @@ -1,3 +1,6 @@ +2003-06-11 Tim Waugh + * src/docgen/HtmlDoc.py (add_photo): Fix typo in image reference. + 2003-06-10 Alex Roitman * src/Plugins.py: Add more values for book item registration. * src/plugins/FtmStyleDescendants.py: Comply with book changes. diff --git a/gramps2/src/docgen/HtmlDoc.py b/gramps2/src/docgen/HtmlDoc.py index 85802aa3e..b0782a294 100644 --- a/gramps2/src/docgen/HtmlDoc.py +++ b/gramps2/src/docgen/HtmlDoc.py @@ -366,10 +366,10 @@ class HtmlDoc(TextDoc.TextDoc): xtra = '' if self.image_dir: - self.f.write('\n' % \ + self.f.write('\n' % \ (self.image_dir,refname,xtra)) else: - self.f.write('\n' % (refname,xtra)) + self.f.write('\n' % (refname,xtra)) def start_table(self,name,style): self.tbl = self.table_styles[style]