From 5ec9b392a737227a3e61555d741b03212d5dcb10 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 23 Nov 2012 11:07:15 +0530 Subject: [PATCH] Fix #1078713 (calibre-parallel.exe crashes when converting .odt file) --- src/odf/attrconverters.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/odf/attrconverters.py b/src/odf/attrconverters.py index b75f80a2dd..fc07642c5e 100644 --- a/src/odf/attrconverters.py +++ b/src/odf/attrconverters.py @@ -605,7 +605,7 @@ attrconverters = { ((FONS,u'margin-top'), None): cnv_string, ((FONS,u'max-height'), None): cnv_string, ((FONS,u'max-width'), None): cnv_string, - ((FONS,u'min-height'), None): cnv_length, + ((FONS,u'min-height'), None): cnv_lengthorpercent, ((FONS,u'min-width'), None): cnv_string, ((FONS,u'orphans'), None): cnv_string, ((FONS,u'padding-bottom'), None): cnv_string,