diff --git a/gramps/gen/plug/report/_paper.py b/gramps/gen/plug/report/_paper.py index 8d56fdbfc..0cd235c37 100644 --- a/gramps/gen/plug/report/_paper.py +++ b/gramps/gen/plug/report/_paper.py @@ -73,8 +73,8 @@ class PageSizeParser(handler.ContentHandler): def startElement(self, tag, attrs): if tag == "page": name = attrs['name'] - height = glocale.float(attrs['height']) - width = glocale.float(attrs['width']) + height = float(attrs['height']) + width = float(attrs['width']) self.paper_list.append(PaperSize(name, height, width)) #-------------------------------------------------------------------------