]> git.lyx.org Git - lyx.git/blobdiff - lib/lyx2lyx/lyx_1_0.py
Allow an 'other' type for hyperlinks. Format change.
[lyx.git] / lib / lyx2lyx / lyx_1_0.py
index 7862b61d9649ce98edc1d86d5c4f1a3708b01ed9..d3f65c51deb58110344ccf2d258bdfd93d39f212 100644 (file)
@@ -14,7 +14,7 @@
 #
 # You should have received a copy of the GNU General Public License
 # along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
 
 """ Convert files to the file format generated by lyx 1.0"""
 
@@ -26,7 +26,7 @@ def obsolete_latex_title(document):
 
     body = document.body
     i = 0
-    while 1:
+    while True:
         i = find_token(body, '\\layout', i)
         if i == -1:
             return
@@ -43,7 +43,7 @@ def update_tabular(document):
     lines = document.body
     lyxtable_re = re.compile(r".*\\LyXTable$")
     i = 0
-    while 1:
+    while True:
         i = find_re(lines, lyxtable_re, i)
         if i == -1:
             break