From af21e396d92e5ecbc569bc81ffb7579a11abbe6c Mon Sep 17 00:00:00 2001 From: Brian Matherly Date: Sun, 24 Feb 2008 23:21:19 +0000 Subject: [PATCH] Fix page_break() in AsciiDoc svn: r10112 --- ChangeLog | 4 ++++ src/docgen/AsciiDoc.py | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) 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):