Fix page_break() in AsciiDoc

svn: r10112
This commit is contained in:
Brian Matherly 2008-02-24 23:21:19 +00:00
parent d2c853cbaa
commit af21e396d9
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2008-02-24 Brian Matherly <brian@gramps-project.org>
* src/docgen/AsciiDoc.py:
Fix page_break()
2008-02-24 Brian Matherly <brian@gramps-project.org>
* src/ReportBase/_CommandLineReport.py:
0001587: Command line reports do not work

View File

@ -166,7 +166,7 @@ class AsciiDoc(BaseDoc.BaseDoc,BaseDoc.TextDoc):
# Force a section page break
#
#--------------------------------------------------------------------
def end_page(self):
def page_break(self):
self.f.write('\012')
def start_bold(self):