]> git.lyx.org Git - features.git/blobdiff - lib/lyx2lyx/lyx_1_1_6fix3.py
Unify the call to converters into LyX.py. (lyx2lyx)
[features.git] / lib / lyx2lyx / lyx_1_1_6fix3.py
index 837f320394be16f041be8ead14792953214c75fd..74b19d27e2eda470684c1e2b8e2d4d19f13a8a29 100644 (file)
@@ -114,17 +114,8 @@ def table_update(lines):
     return lines[:2] + col_info + lines[2:]
 
 
-def convert(file):
-    table = [update_tabular]
-
-    for conv in table:
-        conv(file)
-
-    file.format = 218
-
-
-def revert(file):
-    file.error("The convertion to an older format (%s) is not implemented." % file.format)
+convert = [[218, [update_tabular]]]
+revert  = []
 
 
 if __name__ == "__main__":