From: Richard Heck Date: Sun, 21 Mar 2010 21:05:14 +0000 (+0000) Subject: Fix thinko. X-Git-Tag: 2.0.0~3735 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=6b8532784b2865f13a97d35859db1f17d6b0674c;p=lyx.git Fix thinko. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@33829 a592a061-630c-0410-9148-cb99ea01b6c8 --- 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