]> git.lyx.org Git - lyx.git/commitdiff
Let lyx2lyx work when we don't yet have a format change in 2.1.
authorRichard Heck <rgheck@comcast.net>
Sat, 4 Jun 2011 13:08:22 +0000 (13:08 +0000)
committerRichard Heck <rgheck@comcast.net>
Sat, 4 Jun 2011 13:08:22 +0000 (13:08 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@38947 a592a061-630c-0410-9148-cb99ea01b6c8

lib/lyx2lyx/LyX.py

index 5bb1472feb15e617172255a13b8a740b62ca0ee2..3ae0f3e8572800873059f178406a3baea70ec300 100644 (file)
@@ -82,7 +82,8 @@ format_relation = [("0_06",    [200], minor_versions("0.6" , 4)),
                    ("1_5", range(246,277), minor_versions("1.5" , 7)),
                    ("1_6", range(277,346), minor_versions("1.6" , 10)),
                    ("2_0", range(347,414), minor_versions("2.0", 0)),
-                   ("2_1",     [], minor_versions("2.1", 0))]
+                   ("2_1",     [], minor_versions("2.1", 0))
+                  ]
 
 ####################################################################
 # This is useful just for development versions                     #
@@ -125,7 +126,11 @@ def format_info():
 
 def get_end_format():
     " Returns the more recent file format available."
-    return format_relation[-1][1][-1]
+    # this check will fail only when we have a new version
+    # and there is no format change yet.
+    if format_relation[-1][1]:
+      return format_relation[-1][1][-1]
+    return format_relation[-2][1][-1]
 
 
 def get_backend(textclass):