From 6b8532784b2865f13a97d35859db1f17d6b0674c Mon Sep 17 00:00:00 2001 From: Richard Heck Date: Sun, 21 Mar 2010 21:05:14 +0000 Subject: [PATCH] Fix thinko. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@33829 a592a061-630c-0410-9148-cb99ea01b6c8 --- lib/lyx2lyx/lyx_2_0.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/lyx2lyx/lyx_2_0.py b/lib/lyx2lyx/lyx_2_0.py index 982983031f..bd718445f8 100644 --- a/lib/lyx2lyx/lyx_2_0.py +++ b/lib/lyx2lyx/lyx_2_0.py @@ -1213,10 +1213,10 @@ def convert_math_output(document): rgx = re.compile(r'\\html_use_mathml\s+(\w+)') m = rgx.match(document.header[i]) if rgx: - newval = "MathML" + newval = "0" # MathML val = m.group(1) if val != "true": - newval = "Images" + newval = "2" # Images document.header[i] = "\\html_math_output " + newval -- 2.39.5