X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=lib%2Flyx2lyx%2Flyx_1_0.py;h=d3f65c51deb58110344ccf2d258bdfd93d39f212;hb=144cf4bb9afaa594ef61b93fdb03d34e4752f2ad;hp=7862b61d9649ce98edc1d86d5c4f1a3708b01ed9;hpb=6785e442cf113b7ab9912104ff3a906d460e239f;p=lyx.git diff --git a/lib/lyx2lyx/lyx_1_0.py b/lib/lyx2lyx/lyx_1_0.py index 7862b61d96..d3f65c51de 100644 --- a/lib/lyx2lyx/lyx_1_0.py +++ b/lib/lyx2lyx/lyx_1_0.py @@ -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