mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-22 10:00:33 +00:00
Fix configure.py to work with python3 again (it continues to work with python2(.7))
This commit is contained in:
parent
26c2811cc4
commit
82ee9794f9
@ -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))
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user