* layout2layout.py : Don't choke on empty input file.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@39665 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Julien Rioux 2011-09-12 20:42:22 +00:00
parent 82edf5907a
commit 454598b928

View File

@ -152,7 +152,7 @@ def trim_bom(line):
def read(source):
" Read input file and strip lineendings."
lines = source.read().splitlines()
lines = source.read().splitlines() or ['']
lines[0] = trim_bom(lines[0])
return lines
@ -753,6 +753,8 @@ def convert(lines):
i += 1
if only_comment:
lines.insert(i, "Format 2")
if usemodules:
i = formatline + 1
for mod in usemodules: