* src/plugins/IndivSummary.py (IndivSummary.__init__):
Provide default value of 0 to newpage argument. svn: r1869
This commit is contained in:
parent
c3428c51d4
commit
97215515a6
@ -1,3 +1,7 @@
|
|||||||
|
2003-07-11 Alex Roitman <shura@alex.neuro.umn.edu>
|
||||||
|
* src/plugins/IndivSummary.py (IndivSummary.__init__):
|
||||||
|
Provide default value of 0 to newpage argument.
|
||||||
|
|
||||||
2003-07-11 Donald Peterson <dpeterson@sigmaxi.org>
|
2003-07-11 Donald Peterson <dpeterson@sigmaxi.org>
|
||||||
* src/docgen/LaTeXDoc.py: Added UNICODE support and '&' handling
|
* src/docgen/LaTeXDoc.py: Added UNICODE support and '&' handling
|
||||||
|
|
||||||
|
@ -67,7 +67,7 @@ _options = ( _person_id, _max_gen, _pg_brk )
|
|||||||
#------------------------------------------------------------------------
|
#------------------------------------------------------------------------
|
||||||
class IndivSummary(Report.Report):
|
class IndivSummary(Report.Report):
|
||||||
|
|
||||||
def __init__(self,database,person,output,document,newpage):
|
def __init__(self,database,person,output,document,newpage=0):
|
||||||
self.d = document
|
self.d = document
|
||||||
|
|
||||||
c = database.getResearcher().getName()
|
c = database.getResearcher().getName()
|
||||||
@ -367,7 +367,8 @@ class IndivSummaryDialog(Report.TextReportDialog):
|
|||||||
All user dialog has already been handled and the output file
|
All user dialog has already been handled and the output file
|
||||||
opened."""
|
opened."""
|
||||||
try:
|
try:
|
||||||
MyReport = IndivSummary(self.db, self.person, self.target_path, self.doc)
|
MyReport = IndivSummary(self.db, self.person,
|
||||||
|
self.target_path, self.doc)
|
||||||
MyReport.setup()
|
MyReport.setup()
|
||||||
MyReport.write_report()
|
MyReport.write_report()
|
||||||
except Errors.FilterError, msg:
|
except Errors.FilterError, msg:
|
||||||
|
Loading…
Reference in New Issue
Block a user