]> git.lyx.org Git - features.git/commitdiff
lyx_2_0.py: whitespace
authorUwe Stöhr <uwestoehr@web.de>
Sat, 17 Jul 2010 15:23:21 +0000 (15:23 +0000)
committerUwe Stöhr <uwestoehr@web.de>
Sat, 17 Jul 2010 15:23:21 +0000 (15:23 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@34939 a592a061-630c-0410-9148-cb99ea01b6c8

lib/lyx2lyx/lyx_2_0.py

index 283da64c3873eaa0906387783faa5c4a7fa91504..6dc3058427301a0bfcb5f55762de08a672c0c819 100644 (file)
@@ -1916,20 +1916,15 @@ def revert_IEEEtran(document):
   " Convert IEEEtran layouts and styles to TeX code "
   if document.textclass != "IEEEtran":
     return
-
   revert_flex_inset(document, "IEEE membership", "\\IEEEmembership", 0)
   revert_flex_inset(document, "Lowercase", "\\MakeLowercase", 0)
-
   layouts = ("Special Paper Notice", "After Title Text", "Publication ID",
              "Page headings", "Biography without photo")
-
   latexcmd = {"Special Paper Notice": "\\IEEEspecialpapernotice",
               "After Title Text":     "\\IEEEaftertitletext",
               "Publication ID":       "\\IEEEpubid"}
-
   obsoletedby = {"Page headings":            "MarkBoth",
                  "Biography without photo":  "BiographyNoPhoto"}
-
   for layout in layouts:
     i = 0
     while True:
@@ -1966,7 +1961,6 @@ def revert_nameref(document):
         break
       cmdloc = i
       i += 1
-      
       # Make sure it is actually in an inset!
       # We could just check document.lines[i-1], but that relies
       # upon something that might easily change.