]> git.lyx.org Git - lyx.git/commitdiff
Fix thinko.
authorRichard Heck <rgheck@comcast.net>
Sun, 21 Mar 2010 21:05:14 +0000 (21:05 +0000)
committerRichard Heck <rgheck@comcast.net>
Sun, 21 Mar 2010 21:05:14 +0000 (21:05 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@33829 a592a061-630c-0410-9148-cb99ea01b6c8

lib/lyx2lyx/lyx_2_0.py

index 982983031f1f9cdabe84e9a3672de781f56334c9..bd718445f845d9e1af6364ecfb42faa94cd3359a 100644 (file)
@@ -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