* src/Report.py: Change finish_report to end_report.
svn: r3847
This commit is contained in:
parent
a17f6ebfb0
commit
a73dfc50cb
@ -1,3 +1,6 @@
|
|||||||
|
2004-12-30 Alex Roitman <shura@alex.neuro.umn.edu>
|
||||||
|
* src/Report.py: Change finish_report to end_report.
|
||||||
|
|
||||||
2004-12-30 Don Allingham <dallingham@users.sourceforge.net>
|
2004-12-30 Don Allingham <dallingham@users.sourceforge.net>
|
||||||
* src/RelLib.py: documentation
|
* src/RelLib.py: documentation
|
||||||
* src/Report.py: change finish_report to end_report
|
* src/Report.py: change finish_report to end_report
|
||||||
|
@ -1742,7 +1742,7 @@ def report(database,person,report_class,options_class,translated_name,name,categ
|
|||||||
MyReport = report_class(dialog.db,dialog.person,dialog.options)
|
MyReport = report_class(dialog.db,dialog.person,dialog.options)
|
||||||
MyReport.begin_report()
|
MyReport.begin_report()
|
||||||
MyReport.write_report()
|
MyReport.write_report()
|
||||||
MyReport.finish_report()
|
MyReport.end_report()
|
||||||
except Errors.FilterError, msg:
|
except Errors.FilterError, msg:
|
||||||
(m1,m2) = msg.messages()
|
(m1,m2) = msg.messages()
|
||||||
ErrorDialog(m1,m2)
|
ErrorDialog(m1,m2)
|
||||||
@ -1788,7 +1788,7 @@ def cl_report(database,name,category,report_class,options_class,options_str_dict
|
|||||||
MyReport = report_class(database, clr.person, clr.option_class)
|
MyReport = report_class(database, clr.person, clr.option_class)
|
||||||
MyReport.begin_report()
|
MyReport.begin_report()
|
||||||
MyReport.write_report()
|
MyReport.write_report()
|
||||||
MyReport.finish_report()
|
MyReport.end_report()
|
||||||
except:
|
except:
|
||||||
import DisplayTrace
|
import DisplayTrace
|
||||||
DisplayTrace.DisplayTrace()
|
DisplayTrace.DisplayTrace()
|
||||||
|
Loading…
Reference in New Issue
Block a user