From 503db7f78585a2b12149b0caa9cc698a62e50831 Mon Sep 17 00:00:00 2001 From: Don Allingham Date: Mon, 29 Jan 2007 16:08:36 +0000 Subject: [PATCH] 2007-01-29 Don Allingham * src/ReportBase/_ReportOptions.py: fix landscape saving. svn: r8006 --- gramps2/ChangeLog | 3 +++ gramps2/src/ReportBase/_ReportOptions.py | 4 ++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/gramps2/ChangeLog b/gramps2/ChangeLog index 395b1f54d..35ca33ce7 100644 --- a/gramps2/ChangeLog +++ b/gramps2/ChangeLog @@ -1,3 +1,6 @@ +2007-01-29 Don Allingham + * src/ReportBase/_ReportOptions.py: fix landscape saving. + 2007-01-28 Alex Roitman * src/ViewManager.py (_init_lists): Change Undo History binding to Ctrl+H because AltH was colliding with Help menu shortcut. diff --git a/gramps2/src/ReportBase/_ReportOptions.py b/gramps2/src/ReportBase/_ReportOptions.py index 0461ea204..a3c6c3641 100644 --- a/gramps2/src/ReportBase/_ReportOptions.py +++ b/gramps2/src/ReportBase/_ReportOptions.py @@ -252,7 +252,7 @@ class OptionListCollection(_Options.OptionListCollection): if self.get_last_format_name() != self.default_format_name: f.write(' \n' % escxml(self.get_last_format_name()) ) if self.get_last_orientation() != self.default_orientation: - f.write(' \n' % escxml(self.get_last_orientation()) ) + f.write(' \n' % self.get_last_orientation() ) f.write('\n') def write_module_common(self,f,option_list): @@ -270,7 +270,7 @@ class OptionListCollection(_Options.OptionListCollection): f.write(' \n' % escxml(option_list.get_format_name()) ) if option_list.get_orientation() \ and option_list.get_orientation() != self.default_orientation: - f.write(' \n' % escxml(option_list.get_orientation()) ) + f.write(' \n' % option_list.get_orientation() ) def parse(self): """