From 741467ef33f230aa9e05114a72cbdde3ca21b705 Mon Sep 17 00:00:00 2001 From: Paul Franklin Date: Tue, 22 May 2012 15:51:28 +0000 Subject: [PATCH] 5755: some report "custom paper" sizes are saved incorrectly svn: r19622 --- src/gen/plug/report/_options.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gen/plug/report/_options.py b/src/gen/plug/report/_options.py index e2e0cb08a..80b519b1f 100644 --- a/src/gen/plug/report/_options.py +++ b/src/gen/plug/report/_options.py @@ -434,7 +434,7 @@ class OptionListCollection(_options.OptionListCollection): f.write(' \n' % option_list.get_paper_metric() ) if option_list.get_custom_paper_size(): - size = self.get_last_custom_paper_size() + size = option_list.get_custom_paper_size() f.write(' \n' % (size[0], size[1]) ) if option_list.get_margins(): margins = option_list.get_margins()