]> git.lyx.org Git - lyx.git/blobdiff - development/tools/updatelayouts.py
Add missing revert routine to lyx_2_0.py
[lyx.git] / development / tools / updatelayouts.py
index eaef163d80aa97d75f804028b047284f7f839898..ad02f8a672d88835e821b5467b96ab982fcf60d6 100755 (executable)
@@ -25,6 +25,7 @@ def main(argv):
     dirs.append(os.path.join(toolsdir, '../../lib/layouts'))
     dirs.append(os.path.join(toolsdir, '../../lib/citeengines'))
     for directory in dirs:
+        oldcwd = os.getcwd()
         os.chdir(directory)
         for i in os.listdir("."):
             (base, ext) = os.path.splitext(i)
@@ -33,6 +34,7 @@ def main(argv):
             args = ["layout2layout", i + ".old", i]
             shutil.copy(args[2], args[1])
             layout2layout(args)
+        os.chdir(oldcwd)
 
     return 0