From: Richard Heck Date: Thu, 4 Nov 2010 13:43:33 +0000 (+0000) Subject: Simplify revert_suppress_date. X-Git-Tag: 2.0.0~2064 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=bbacb7c5becf85ea9fd5f23d7f93212bbceeb5e1;p=features.git Simplify revert_suppress_date. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@36051 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/lib/lyx2lyx/lyx_2_0.py b/lib/lyx2lyx/lyx_2_0.py index c172a03143..8b46df1ec4 100644 --- a/lib/lyx2lyx/lyx_2_0.py +++ b/lib/lyx2lyx/lyx_2_0.py @@ -1170,19 +1170,16 @@ def revert_author_id(document): def revert_suppress_date(document): " Revert suppressing of default document date to preamble code " - i = 0 - while True: - i = find_token(document.header, "\\suppress_date", i) - if i == -1: - break - # remove the preamble line and write to the preamble - # when suppress_date was true - date = get_value(document.header, "\\suppress_date", i) - if date == "true": - add_to_preamble(document, ["% this command was inserted by lyx2lyx"]) - add_to_preamble(document, ["\\date{}"]) - del document.header[i] - i = i + 1 + i = find_token(document.header, "\\suppress_date", 0) + if i == -1: + return + # remove the preamble line and write to the preamble + # when suppress_date was true + date = get_value(document.header, "\\suppress_date", i) + if date == "true": + add_to_preamble(document, ["% this command was inserted by lyx2lyx"]) + add_to_preamble(document, ["\\date{}"]) + del document.header[i] def revert_mhchem(document):