dn2osdbk: Add a new line at the end of index pages

Change-Id: I3dac90b774b41d7c5aac908ae0ee61ec42c210ce
This commit is contained in:
Gauvain Pocentek 2014-10-31 12:06:14 +01:00
parent 842c98c4f7
commit 515c0b8030
1 changed files with 4 additions and 2 deletions

View File

@ -177,7 +177,8 @@ class BookTransformer(BaseFolderTransformer):
<title>%(title)s</title>
%(includes)s
</book>''' % {'xml_id': xml_id, 'title': self.title, 'includes': includes}
</book>
''' % {'xml_id': xml_id, 'title': self.title, 'includes': includes}
open(output_file, 'w').write(output)
@ -203,7 +204,8 @@ class ChapterTransformer(BaseFolderTransformer):
<title>%(title)</title>
%(includes)s
</chapter>''' % {'xml_id': xml_id, 'title': self.title, 'includes': includes}
</chapter>
''' % {'xml_id': xml_id, 'title': self.title, 'includes': includes}
open(output_file, 'w').write(output)