* src/plugins/BookReport.py: Make a list of options from a tuple.

* src/plugins/AncestorReport.py: Register options as a tuple.
* src/plugins/Ancestors.py: Register options as a tuple.
* src/plugins/DescendReport.py: Register options as a tuple.
* src/plugins/FtmStyleAncestors.py: Register options as a tuple.
* src/plugins/FtmStyleDescendants.py: Register options as a tuple.
* src/plugins/IndivComplete.py:  Register options as a tuple.
* src/plugins/IndivSummary.py: Register options as a tuple.
* src/plugins/SimpleBookTitle.py: Register options as a tuple.


svn: r1829
This commit is contained in:
Alex Roitman
2003-07-06 19:55:45 +00:00
parent 76e9b6daec
commit 45bf59b7a8
10 changed files with 23 additions and 18 deletions

View File

@@ -60,7 +60,7 @@ class FtmDescendantReport(Report.Report):
self.max_generations = max
self.pgbrk = pgbrk
self.doc = doc
self.setup()
#self.setup()
self.newpage = newpage
if output:
self.standalone = 1
@@ -1243,7 +1243,7 @@ _style_name = "default"
_person_id = ""
_max_gen = 10
_pg_brk = 0
_options = [ _person_id, _max_gen, _pg_brk ]
_options = ( _person_id, _max_gen, _pg_brk )
#------------------------------------------------------------------------
#