From: José Matos Date: Thu, 16 May 2019 08:27:12 +0000 (+0100) Subject: Fix configure.py to work with python3 again (it continues to work with python2(.7)) X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=f68e56618e326819b58cf64dc47b0dbe2934242c;p=features.git Fix configure.py to work with python3 again (it continues to work with python2(.7)) --- diff --git a/lib/configure.py b/lib/configure.py index 9247957948..0b3c2a761c 100644 --- a/lib/configure.py +++ b/lib/configure.py @@ -1587,9 +1587,9 @@ def processModuleFile(file, filename, bool_docbook): cm.write(line + '\n') cm.close() - local = "true" + local = b"true" if (file.startswith(srcdir)): - local = "false" + local = b"false" return (b'"%s" "%s" "%s" "%s" "%s" "%s" "%s" "%s"\n' % (modname, filename, desc, pkgs, req, excl, catgy, local))