diff --git a/ChangeLog b/ChangeLog index 174e5154e..2f93ca6ac 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2008-02-24 Brian Matherly + * src/docgen/AsciiDoc.py: + Fix page_break() + 2008-02-24 Brian Matherly * src/ReportBase/_CommandLineReport.py: 0001587: Command line reports do not work diff --git a/src/docgen/AsciiDoc.py b/src/docgen/AsciiDoc.py index c8aca6bc0..6db2f23e6 100644 --- a/src/docgen/AsciiDoc.py +++ b/src/docgen/AsciiDoc.py @@ -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):