From c3471430b06dfec522aa6c4b310024d59abba7c2 Mon Sep 17 00:00:00 2001 From: Doug Blank Date: Mon, 17 Dec 2007 03:59:50 +0000 Subject: [PATCH] Removed margins from write_common svn: r9524 --- src/ReportBase/_ReportOptions.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/ReportBase/_ReportOptions.py b/src/ReportBase/_ReportOptions.py index bf795782b..5f4071fcb 100644 --- a/src/ReportBase/_ReportOptions.py +++ b/src/ReportBase/_ReportOptions.py @@ -331,10 +331,6 @@ class OptionListCollection(_Options.OptionListCollection): f.write(' \n' % escxml(self.get_last_format_name()) ) if self.get_last_orientation() != self.default_orientation: f.write(' \n' % self.get_last_orientation() ) - if self.get_last_margins() != self.default_margins: - margins = self.get_last_margins() - for pos in range(len(margins)): - f.write(' \n' % (pos, margins[pos])) f.write('\n') def write_module_common(self,f,option_list):