From 1db260b72e0a456df0d567a12c914f7bd0d1676f Mon Sep 17 00:00:00 2001 From: Alex Roitman Date: Wed, 10 Mar 2004 02:14:00 +0000 Subject: [PATCH] * src/plugins/Ancestors.py: Use 1 instead of gtk.True. svn: r2991 --- gramps2/ChangeLog | 2 ++ gramps2/src/plugins/Ancestors.py | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/gramps2/ChangeLog b/gramps2/ChangeLog index 6c5debf62..86b88cd6a 100644 --- a/gramps2/ChangeLog +++ b/gramps2/ChangeLog @@ -2,6 +2,8 @@ * src/docgen/LPRDoc.py: Set and maintain self.brand_new_page. Use constant factor for line spacing for given font size. + * src/plugins/Ancestors.py: Use 1 instead of gtk.True. + 2004-03-08 Don Allingham * src/EditPerson.py: TreeView enhancements * src/PeopleModel.py: TreeView enhancements diff --git a/gramps2/src/plugins/Ancestors.py b/gramps2/src/plugins/Ancestors.py index cdbf8c784..99289d1f9 100644 --- a/gramps2/src/plugins/Ancestors.py +++ b/gramps2/src/plugins/Ancestors.py @@ -934,7 +934,7 @@ _style_name = "default" _person_id = "" _max_gen = 10 _pg_brk = 0 -_opt_cite = gtk.TRUE +_opt_cite = 1 _options = ( _person_id, _max_gen, _pg_brk, _opt_cite )