]> git.lyx.org Git - lyx.git/blobdiff - lib/lyx2lyx/lyx_1_3.py
Whitespace, only whitespace. s/ +$//
[lyx.git] / lib / lyx2lyx / lyx_1_3.py
index 978b883d7efc29a2b0a82e9af2471719f5667952..7ced9af7fd123df542330959eeb74bb89cddb370 100644 (file)
@@ -92,17 +92,8 @@ def change_tabular(file):
         i = i+1
 
 
-def convert(file):
-    table = [change_insetgraphics, change_tabular]
-
-    for conv in table:
-        conv(file)
-
-    file.format = 221
-
-
-def revert(file):
-    file.error("The convertion to an older format (%s) is not implemented." % file.format)
+convert = [[221, [change_insetgraphics, change_tabular]]]
+revert  = []
 
 
 if __name__ == "__main__":