]> git.lyx.org Git - lyx.git/blobdiff - lib/lyx2lyx/lyx_1_1_6.py
Whitespace, only whitespace. s/ +$//
[lyx.git] / lib / lyx2lyx / lyx_1_1_6.py
index 9e849629b175e2a337072a04cbd0f0bd06b6f601..67b114a0b626c88cf3c58ea13e971d0c88dfc574 100644 (file)
@@ -276,17 +276,8 @@ def update_language(file):
     return
 
 
-def convert(file):
-    table = [update_tabular, update_language]
-
-    for conv in table:
-        conv(file)
-
-    file.format = 217
-
-
-def revert(file):
-    file.error("The convertion to an older format (%s) is not implemented." % file.format)
+convert = [[217, [update_tabular, update_language]]]
+revert  = []
 
 
 if __name__ == "__main__":