From d9923bdf77bd9aa6f91a4fbc6228a8d9a3ba5354 Mon Sep 17 00:00:00 2001 From: Paul Franklin Date: Wed, 23 Jul 2014 09:48:01 -0700 Subject: [PATCH] slight tweaks to recent work --- gramps/gen/plug/report/stdoptions.py | 6 +++++- gramps/plugins/textreport/placereport.py | 1 - 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/gramps/gen/plug/report/stdoptions.py b/gramps/gen/plug/report/stdoptions.py index cec4fddcd..13d985594 100644 --- a/gramps/gen/plug/report/stdoptions.py +++ b/gramps/gen/plug/report/stdoptions.py @@ -2,7 +2,7 @@ # Gramps - a GTK+/GNOME based genealogy program # # Copyright (C) 2013 John Ralls -# Copyright (C) 2013 Paul Franklin +# Copyright (C) 2013-2014 Paul Franklin # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -80,6 +80,10 @@ def add_private_data_option(menu, category, default=True): """ Insert an option for deciding whether the information in the database marked "private" shall be included in the report + + Since historically, before this option, the entire database was + used, including private information, the default for this option + has been set to be True, to include such private information. """ incl_private = BooleanOption(_("Include data marked private"), default) incl_private.set_help(_("Whether to include private data")) diff --git a/gramps/plugins/textreport/placereport.py b/gramps/plugins/textreport/placereport.py index 29c4c67c5..114b49f2d 100644 --- a/gramps/plugins/textreport/placereport.py +++ b/gramps/plugins/textreport/placereport.py @@ -79,7 +79,6 @@ class PlaceReport(Report): menu = options.menu places = menu.get_option_by_name('places').get_value() self.center = menu.get_option_by_name('center').get_value() - incl_private = menu.get_option_by_name('incl_private').get_value() self.set_locale(menu.get_option_by_name('trans').get_value())