]> git.lyx.org Git - lyx.git/blobdiff - lib/lyx2lyx/lyx_1_1_5.py
Whitespace, only whitespace. s/ +$//
[lyx.git] / lib / lyx2lyx / lyx_1_1_5.py
index 6e8fa21a2d7aa3bf5a18ea5f526c0121154dc8e4..4f533a9c6dd34f244cc2b869216e323c7fef44ff 100644 (file)
@@ -155,19 +155,10 @@ def remove_space_in_units(file):
             i = i + 1
 
 
-def convert(file):
-    table = [first_layout, remove_vcid, remove_cursor, update_toc,
-             replace_protected_separator, merge_formula_inset,
-             update_tabular, remove_space_in_units]
-
-    for conv in table:
-        conv(file)
-
-    file.format = 216
-
-
-def revert(file):
-    file.error("The convertion to an older format (%s) is not implemented." % file.format)
+convert = [[216, [first_layout, remove_vcid, remove_cursor, update_toc,
+                  replace_protected_separator, merge_formula_inset,
+                  update_tabular, remove_space_in_units]]]
+revert  = []
 
 if __name__ == "__main__":
     pass