]> git.lyx.org Git - lyx.git/blobdiff - lib/lyx2lyx/lyx_1_1_6_3.py
Merge the two noto regular fonts
[lyx.git] / lib / lyx2lyx / lyx_1_1_6_3.py
index 5c36cec18d3a389c2dbd9a8514698bb2d33366a4..5090314cd8c3e890f9784ebc36cb0e6314036215 100644 (file)
@@ -14,9 +14,9 @@
 #
 # 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.1.6fix3"""
+""" Convert files to the file format generated by lyx 1.1.6, fix3 and fix4"""
 
 import re
 from parser_tools import find_token, find_re
@@ -39,7 +39,7 @@ def update_tabular(document):
     regexp = re.compile(r'^\\begin_inset\s+Tabular')
     lines = document.body
     i=0
-    while 1:
+    while True:
         i = find_re(lines, regexp, i)
         if i == -1:
             break